2016年10月16日日曜日

GPGSAppController didRegisterForRemoteNotificationsWithDeviceToken

Xcode8のGPGSで以下のエラーが発生
[super application:application didRegisterForRemoteNotificationsWithDeviceToken:deviceToken];
どうやらスーパーへの呼び出しが最新のXcodeと合わないようです。

対処法1スーパーを削除する

- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken { // [super application:application didRegisterForRemoteNotificationsWithDeviceToken:deviceToken]; // NSLog(@"Got Token for APNS: %@", deviceToken); // send the token to GPGS server so invitations can be sent to the local player // NOTE: GPGPushNotificationEnvironmentProduction indicates this is // using the production APNS service. // GPGPushNotificationEnvironmentSandbox indicates that the sandbox // service should be used. This value needs to match the cooresponding // certificate registered in the play app console, under linked apps > ios in // the section for push notifications. gpg::RegisterDeviceToken(deviceToken, GPGPushNotificationEnvironmentProduction); }

対処法2行を削除する

最新のGPGSソースでは行がなくなっています。

0 件のコメント:

コメントを投稿