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
- Texture2D hash changes inside of an AssetBundle when rebuilding a SpriteAtlas bundle with an empty AssetPostprocessor Script enabled
- Aniso Level still applies when Generate MipMap is disabled in Texture Import Settings
- Mipmap Limit Groups long names are not truncated when creating a new Mipmap Limit Group with a long name
- “ArgumentException: Invalid double parameter.” error is thrown when Infinity is typed into the Fixed Timestep field
- GameObject becomes gray when using HDRP and STP together on macOS
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.