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
Replies
Boosts
Views
Activity
Seems fixed now. Great! we only lost one day of testing...
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.
Same issues here... Not being able to login with a sandbox user, and issues when purchasing.
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!