Posts

Post not yet marked as solved
1 Replies
1.3k Views
Hi,I use Normal Remote Notification and it call currectly the method bellow:-(void) application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler { NSLog( @"HANDLE PUSH, didReceiveRemoteNotification: %@", userInfo ); // custom code to handle notification content if( [UIApplication sharedApplication].applicationState == UIApplicationStateInactive ) { NSLog( @"INACTIVE" ); completionHandler( UIBackgroundFetchResultNewData ); } else if( [UIApplication sharedApplication].applicationState == UIApplicationStateBackground ) { NSLog( @"BACKGROUND" ); completionHandler( UIBackgroundFetchResultNewData ); } else { NSLog( @"FOREGROUND" ); completionHandler( UIBackgroundFetchResultNewData ); } }The main problem is, when i switch off and then switch on my device and when i send the push, i see that the push arrive on my device becuase Alert appear on my device but the method above not called, in genral it should wake up my app call method bellow.- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { }and then call the completion handler...However after opening my app and close it again many times (after some mins) when i send a push then it should start work currectly and the method above start to call... Does anyone have the same issue ?
Posted Last updated
.
Post not yet marked as solved
0 Replies
404 Views
Hi,Unfortunetly with iOS 13, we must implement "reportNewIncomingCallWithUUID" to our app. the problem is that our app is like whatsapp, has Message and Voip Comunication.In the past we were using pushkit also for messaging app but the problem is: now we cannot use that...So does apple provide normal push notification for messaging app? Or exist a normal push notification that doesnt have to use "reportNewIncomingCallWithUUID"?Thanks,
Posted Last updated
.
Post not yet marked as solved
0 Replies
822 Views
Hi, i am not using any SDK for crashing Report. When i use my app from testfligt, sometimes it shows an alert "Appname"crashed, do you want to share additional information with developer?i dont know if this alert will show when clients download my app from AppStore, anyone know how to disable the alert?Thanks
Posted Last updated
.