You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While testing on iOS on simulator, everything was working fine until I tried running my app on a real device. I noticed that it was crashing and while debugging I discovered that it was crashing on this line:
I checked and I was calling the requestNotificationPermissions() method successfully. After some additional debugging (stepping inside the configure() method), the app was breaking at _channel.invokeMethod<void>('configure'); which is a call to the native code (which would make sense since it is not crashing on the simulator).
Any idea why it would be crashing or any help ?
Additional info:
Device: iPhone 7
Simulator: iPhone 12 Pro Max
Simulator and device version: iOS 14.2.
The text was updated successfully, but these errors were encountered:
While testing on iOS on simulator, everything was working fine until I tried running my app on a real device. I noticed that it was crashing and while debugging I discovered that it was crashing on this line:
flutterVoipPushNotification.configure( onMessage: onMessage, onResume: onResume);
I checked and I was calling the
requestNotificationPermissions()
method successfully. After some additional debugging (stepping inside theconfigure()
method), the app was breaking at_channel.invokeMethod<void>('configure');
which is a call to the native code (which would make sense since it is not crashing on the simulator).Any idea why it would be crashing or any help ?
Additional info:
Device: iPhone 7
Simulator: iPhone 12 Pro Max
Simulator and device version: iOS 14.2.
The text was updated successfully, but these errors were encountered: