I'm developing WidgetKit extension on iOS 14,
however, the extension doesn't always connect to Xcode debugger after build and run, causing I can't see logs. (But sometimes it'll automatically attach, I don't know why)
Manually attach process to debugger doesn't works, it should be attached at first launch to see logs.
Does anyone know how to properly debug iOS 14 widget?
Apple developer forum doesn't allow me to post image..so I can't demo what issue I'm facing, sorry.
Please refer to this Stackoverflow question to see full question with image: https://stackoverflow.com/questions/64922585/xcode-ios-14-widgetkit-not-always-attached-to-debugger)
Post
Replies
Boosts
Views
Activity
So I'm implementing sign in with Apple, requesting `email` and `fullName` scopesIt works on simulator, when authenticating, the name and email UI shows as expected, as this image shows:https://i.imgur.com/BPFfoRR.pngthis is testing on the simulator, but when I move to real device (iPadOS 13), the UI does not shows, as this image shows:https://i.imgur.com/pbhTRzj.pngand also the result only returns the user identifier:https://i.imgur.com/17rIEGX.pngand I can confirm that the `authorizedScopes` from `ASAuthorizationAppleIDCredential` is also empty.I believe this is a bug, if it's not, can somebody tell me how to fix this?Thanks!