Search Issue Tracker
Fixed in 4.5.6
Votes
1
Found in
4.6.0b18
Issue ID
633483
Regression
No
NotificationServices.RegisterForRemoteNotificationTypes is not working on iOS8+
1) What happened
NotificationServices.RegisterForRemoteNotificationTypes no longer works on iOS8
2) How can we reproduce it using the example you attached.
- Create a new iOS project
- Call NotificationServices.RegisterForRemoteNotificationTypes
- Run on an iOS device
- Observe the following error in Xcode's output: registerForRemoteNotificationTypes: is not supported in iOS 8.0 and later.
Comments (11)
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- "Shader warning in 'Hidden/Light2D': implicit truncation of vector type" is thrown when building Universal 2D template
- AI Assistant breaks compilation of packages using System.Runtime.CompilerServices.Unsafe via auto-referencing
- Unity Hub checks the "Documentation" module by default on the 6.4 and 6.5 streams despite that it was unchecked with the previous installs
- Shortcut that toggles between Dopesheet and Curves Views in the Animation Window's Timeline is mislabed
- Property List Items Overlap onto the Property List's top edge when scrolling through a long Property List
Prodigga
Jan 02, 2015 02:54
I have found that this is fixed in 4.6.1f1. Upgrading from 4.5 > 4.6 is a fairly smooth process, so upgrade asap! :)
Amitloaf
Dec 21, 2014 08:46
This is not fixed yet.
Mikeysee
Nov 28, 2014 08:40
Sorry I should have said 4.6.0f3
Mikeysee
Nov 28, 2014 08:39
This is still happening in Unity 4.6 (release)
David-Berger
Nov 20, 2014 11:08
The bug was fixed in 4.5.5p1 and will go to 4.6.0p1.
gezmo
Nov 13, 2014 17:50
Still happening in the 4.6 RC
miacoviello
Nov 04, 2014 02:32
The fix below is for the Google Play Services plugin for Unity. If this is just an issue with your XCode project, replace the line in your project with the fixed version of the registerForRemoteNotification types and it will work.
miacoviello
Nov 04, 2014 02:32
The fix below is for the Google Play Services plugin for Unity. If this is just an issue with your XCode project, replace the line in your project with the fixed version of the registerForRemoteNotification types and it will work.
miacoviello
Nov 04, 2014 02:30
Follow these instructions to fix the issue:
Edit the file "GPSInterface.m" and replace the line:
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:
(UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeAlert)];
with this:
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0) { [[UIApplication sharedApplication] registerUserNotificationSettings:[UIUserNotificationSettings settingsForTypes:(UIUserNotificationTypeSound | UIUserNotificationTypeAlert | UIUserNotificationTypeBadge) categories:nil]]; [[UIApplication sharedApplication] registerForRemoteNotifications]; } else { [[UIApplication sharedApplication] registerForRemoteNotificationTypes: (UIUserNotificationTypeBadge | UIUserNotificationTypeSound | UIUserNotificationTypeAlert)]; }
ekawahara
Oct 14, 2014 16:44
Agree with the above comment, tested the issue on Unity 4.5.5f1 and this is still an occurring issue.