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.
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
- Articulation Body with 'Revolute' Joint Type has erratic behavior when Upper Limit is set to above 360
- WebGL Player fails to render Scene when Terrain with Detail Mesh is added and WebGPU Graphics API is used
- Inconsistent errors are logged when different types are passed into the Query "Q<>" method in UIToolkit and the ancestor VisualElement is null
- Crash on GetMaterialPropertyByIndex when opening a specific Scene
- Discrepancies in the styling are present when using a TSS file instead of a USS file in custom EditorWindow
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.