Posts

Post marked as solved
5 Replies
12k Views
I've submitted an app that's approved for pre-order and want to submit a new build to update the existing build.But, when I try to upload this build, I get the error: "the Info.plist file must contrain a higher build version than the previously approved version [1.0]". This makes sense, and usually, I'd reject the current build and reupload.But, for pre-orders, I can't see a way to do this. The only thing I can see is to remove it from sale. But, I don't want to do that. I just want to replace the build? Is this possible? And if not, what will happen to the users who have already pre-ordered the app?Thanks for any help.
Posted Last updated
.
Post not yet marked as solved
0 Replies
3.0k Views
I have an app which uses shared container storage in iCloud. I just use the 1st party share UI to create shares between users (UICloudSharingController). This works well for all of my users (thousands of them) except for one. I have many users successfully sharing an iCloud object but one has reported this bug (and has screenshots to verify it). When they share it with another user and that user accepts the share, they see the error: "The owner stopped sharing or you don't have permission to open it". When the owner looks at the list of people they've shared it with, they see the user they are targeting, but the user still gets this error message. They've tried: Deleting the share and recreating it Sharing with different methods (text, email, etc) Rebooting devices Nothing they do seems to work. I'm guessing there may be some setting that's stopping her device receiving shares or something, but not sure what's going on. Any advice would be helpful.
Posted Last updated
.
Post not yet marked as solved
0 Replies
749 Views
I can't work out how to use SwiftUI in a notification content extension. It always appears black for me when the extension runs.Here's the code in my extension right now:class NotificationViewController: UIViewController, UNNotificationContentExtension { override func viewDidLoad() { super.viewDidLoad() let child = UIHostingController(rootView: TaskCell_Previews.previews) addChild(child) child.view.frame = view.frame view.addSubview(child.view) child.didMove(toParent: self) NSLayoutConstraint.activate([ child.view.widthAnchor.constraint(equalTo: view.widthAnchor, multiplier: 1), child.view.heightAnchor.constraint(equalTo: view.heightAnchor, multiplier: 1), child.view.centerXAnchor.constraint(equalTo: view.centerXAnchor), child.view.centerYAnchor.constraint(equalTo: view.centerYAnchor) ]) } func didReceive(_ notification: UNNotification) { } }In this case, I'm just putting `TaskCell_Previews` in to try to get it working. Whenever I tap on the notification, it just shows a blank view (which has a 1-1 aspect ratio as that's defined in my plist).Thanks for any help/advice.
Posted Last updated
.