Posts

Post not yet marked as solved
1 Replies
related question: https://forums.developer.apple.com/forums/thread/750801?page=1#786509022
Post not yet marked as solved
3 Replies
It would be possible because this app does it: https://apps.apple.com/us/app/desktop-calculator/id6450638014
Post not yet marked as solved
5 Replies
I had to call Apple developer support to get this problem fixed
Post not yet marked as solved
5 Replies
One year later this issue still exists. Can anyone tells me if the issue has been solved for them and if there is a workaround? Specifically, my app has 7 localizations for subscriptions (IAP). The app shows Dutch localization for users whose device is sent to English (including myself). There is a yellow dot next to some of the localizations. All in-app purchases have been approved a few days ago.
Post not yet marked as solved
3 Replies
The problem is that MKMapSnapshotter.start does not run while the app is in the background and th callback is never called in TimelineProvider. Have you actually tried this? I have tried it and the completionHandler for MKMapSnapshotter.start is never called in TimelineProvider.
Post marked as solved
2 Replies
I've tried MKMapSnapshotter in the TimelineProvider as suggested in the accepted answer, but the completion handler of the start is never called (snapshot is a MKMapSnapshotter object and I have verified that the callback is called when this code runs on the actual app and not the widget TimelineProvider. What am I missing?       let image = snapshot?.image // Image(uiImage: snapshot?.image)       completionHandler(image)     }
Post marked as solved
13 Replies
HomeWidgets cannot have buttons and actions. Yes, I know that you can use the HomeWidget to launch the app and pass a parameter to it do something that you want, but that is not the same thing as what's possible with Today Widgets which does the job without launching the app. Deprecating Today Widgets without a replacement seems short-sighted.
Post marked as solved
36 Replies
Right Xcode beta 4 still has the problem. I discovered that to reproduce the problem you don't even need to submit through TestFlight. Just building in Xcode as release (vs debug) causes widgets to disappear. I have also tried the "dead-code stripping" settings in "build settings" for the target and changing that does not fix the problem either. Given that HomeWidgets is an important feature of iOS 14, it's strange that Apple has not tested this once and even stranger that after filing bug reports against beta 3, they still have not fixed the problem in beta 4.
Post marked as solved
36 Replies
Has anyone tried Xcode beta 4 yet to see if it fixes the problem? The release code does not say anything about this problem. I'm downloading now.
Post marked as solved
36 Replies
I'm beginning to think that the reason widgets don't show up with TestFlight distribution may not be a bug in TestFlight but a bug in Xcode beta 3. Has anyone tried to submit with Xcode beta 2?
Post not yet marked as solved
3 Replies
OP, you are not alone. This is a TestFlight bug. See this thread: https://developer.apple.com/forums/thread/655393?page=1#623170022
Post marked as solved
36 Replies
I even set the policy to .never and the problem persists. Interestingly everything worked with TestFlight before Apple announced that now TestFlight supports HomeWidgets. 				let timeline = Timeline(entries: [entry], policy: .never)         completion(timeline)