Posts

Post not yet marked as solved
1 Replies
I also tried just planning a price change manually through App Store, and the same thing happens!! Remove => Save => Refresh page, and the price change comes back!!!!!
Post not yet marked as solved
14 Replies
Seems fixed now. Great! we only lost one day of testing...
Post not yet marked as solved
1 Replies
Quite some more people are affected, it seems: https://developer.apple.com/forums/thread/665561?answerId=644256022 Can't login, can't purchase in sandbox.
Post not yet marked as solved
14 Replies
Same issues here... Not being able to login with a sandbox user, and issues when purchasing.
Post marked as solved
2 Replies
Just dealt with this yesterday...Implement UNUserNotificationCenterDelegate of UNUserNotificationCenter.currentNotificationCenter.And right on app launch, set that delegate, for example:[[UNUserNotificationCenter currentNotificationCenter] setDelegate:self];The method:- (void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandlerWill indicate how the notification will be presented once received, for example:completionHandler(UNAuthorizationOptionAlert | UNAuthorizationOptionSound | UNAuthorizationOptionBadge);Then the method:- (void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)())completionHandlerWill indicate what to do after the user interacted with said notification. Don forget to call the completion handler!Good luck!
Post not yet marked as solved
10 Replies
We experienced something similar in production for some time.But it has been happening in Sandbox for a while...