Post not yet marked as solved
I have cracking sound while playing music recurrently, which disturbs a lot. Its on new Macbook Pro 14 M1 Pro, running Os Monterey 12.3.1
Kindly help me out to fix
Post not yet marked as solved
Hi, Is it possible to save the selected sounds in the app? so you don't have to choose again when you close the app.
Post not yet marked as solved
I am updating a Xamarin App it is working perfectly on the iOS simulator but Not working on iOS devices. I am able to deploy on iOS devices.
When I am filling in the fields it's not being set to the model all parameters are empty. Image paths are Null, Constant variables are null. On the simulator data binding is working.
I have uploaded the relative code on the GitHub link
https://github.com/omshergill/MobileApp
using System;using System.Collections.Generic;using System.ComponentModel;using System.Text;using System.Threading.Tasks;using VolMobile.AppData.Interfaces;using VolMobile.AppData.SQL;using Xamarin.Essentials;using Xamarin.Forms;
namespace VolMobile.Pages.AuthenticationPages.Login{
public class LoginPageViewModel : INotifyPropertyChanged { //private static ILogger logger = DependencyService.Get<ILogManager>().GetLog();
public LoginPageViewModel() {
}
public void Load() { //RememberMe = DeviceStorage.RememberMe; //if (DeviceStorage.RememberMe == true) //{ //UserName = DeviceStorage.UsersName; //+AppData.AppData.Alpha_Beta_Version -->adding extra @beta/alpha to name on log in. //} IsLoading = false; }
#region Properties
public string AppVersion { get { return "v." + AppInfo.VersionString; } }
string _UserName = string.Empty; public string UserName { get { return _UserName; } set { _UserName = value; OnPropertyChanged(nameof(UserName)); } }
string _Password = string.Empty; public string Password { get { return _Password; } set { _Password = value; OnPropertyChanged(nameof(Password)); } }
private bool _RememberMe = false; public bool RememberMe { get { return _RememberMe; } set { _RememberMe = value; OnPropertyChanged(nameof(RememberMe)); } }
private bool _IsLoading = true; public bool IsLoading { get { return _IsLoading; } set { _IsLoading = value; OnPropertyChanged(nameof(IsLoading)); } }
#endregion
public async Task Login() {
IsLoading = true;
var userNameStripped = HttpCalls.ApiFunctions.SetServerURI(UserName); try { await App.AppState.AppControllers.tokenController.GetAuthorizationToken(userNameStripped, Password); } catch (Exception ex) { Console.WriteLine(ex.Message);
}
if (App.AppState.AppSettings.loggedIn) { //Run the Post login Initialization of Controllers try { await App.AppState.Initialize_PostLogin(); } catch (Exception ex) { //logger.Error(App.LogPrefix() + "Init_PostLogin error: " + ex.Message); Console.WriteLine(App.LogPrefix() + "Init_PostLogin error: " + ex.Message);
}
//Proceed to dashboard // Device.BeginInvokeOnMainThread(() => //{ try {
App.Current.MainPage = new Navigation.Navigation(new Dashboard.DashboardPage()); } catch (Exception ex) { //logger.Error(App.LogPrefix() + "Error opening Navigation Page: " + ex.Message); Console.WriteLine(App.LogPrefix() + "Error opening Navigation Page: " + ex.Message); this.IsLoading = false; }
//});
} else { this.IsLoading = false; }
}
//Property change event, used to update data bound objects in the UI public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propName) { System.Diagnostics.Debug.WriteLine("Before"); var handler = this.PropertyChanged; if (handler == null) { return; }
System.Diagnostics.Debug.WriteLine("Fired"); handler(this, new PropertyChangedEventArgs(propName)); }
}}
Post not yet marked as solved
IOS mobile app developed using react native and objective C (for push notification), post deployment observed default IOS ringtone and alert notification sound is not visible.
Post not yet marked as solved
Is it possible to use SNAudioFileAnalyzer with live HLS(m3u8) stream? Maybe we need to extract somehow audio from it?
And Can we use SNAudioFileAnalyzer with real remote url? Or we can use it only with files in file system?
Post not yet marked as solved
For some reason when I receive a call/text/ FaceTime/email I don’t get any sound, the sound has disappeared. I have the volume on max and all it does is vibrate. I have pressed reset on phone but it hasn’t helped. Any suggestions would be welcomed. TIA
Post not yet marked as solved
Where can I find a comprehensive list of all the classes that the built in Sound Classifier model supports?
Post not yet marked as solved
Dear all,
I found the announced built-in sound classifier pretty amazing.
I would appreciate it if you could point me to a link or a document that is listed all 300 sound classes mentioned in https://developer.apple.com/videos/play/wwdc2021/10036/.
Thank you