-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to receive local notification on ios 10 #1024
Comments
Can you send me the code for ios 9. I have issue in ios 9. |
I have the same issue. I think it's specifically an iOS 10 beta bug :( |
Beta 2 still has the same issue if anyone is wondering |
Important:UILocalNotification is deprecated in iOS 10. Use UNNotificationRequest instead. A UILocalNotification object specifies a notification that an app can schedule for presentation at a specific date and time. |
Gah I scoured the docs and didn't see that. So basically this plugin is totally useless at this point? Or do the APIs line up pretty well? Any recommendations for other plugins guys? |
#sparsh0611 can you please send me the iOS9 code. |
@gandhiselvarj @swamy470 Here is my working iOS 9 code. But, it won't work in iOS 10 because of deprecation, as mentioned above . Schedule notification: On notification receive: (in app.js) |
For me this update does not work properly, see this post if you have problems too. |
Deprecation doesn't mean that it wont work, isn't it? I too face the problem. I think the way iOS handled localNotifications have changed that's why it affects UILocalNotifications. #pureAssumptions |
Is this still an issue? Its over six months old. It also refers to a Beta of IOS10. We have IOS10 working. |
The code does work in IOS10. Suspect this is an issue with Beta version of IOS10. Now closed as no update from original poster. |
The local notifications are working fine on iOS 9 and lower versions. But, in iOS 10 (beta version), no local notification is received. There's no error while scheduling it and 'schedule' method in APPLocalNotification.m runs without error. But, the notification doesn't get fired.
The text was updated successfully, but these errors were encountered: