Posts

Post marked as solved
1 Replies
0 Views
It started working from beta 2 to beta 4
Post marked as Apple Recommended
0 Views
Same problem in beta 3, now it started for Combine framework too.
Post marked as solved
7 Replies
0 Views
Widget simulator does not work Add widget (Notification Center or today widget view, not sure what it called. When you tap on top right corner, it allows to add widget of reminders, weather. It will show all Mac apps which has support for widgets) Right click on widget, it will show edit widget option. Tested with latest beta Xcode 12.2 beta 2 and it works.
Post not yet marked as solved
2 Replies
0 Views
But any idea how to make configurable widget on Mac OS? Don't find way for handling intent. There is no way to add intent extension.
Post marked as Apple Recommended
0 Views
Anyone got any workaround?
Post marked as solved
7 Replies
0 Views
Works. Need to add intent handler target to Mac OS as well.
Post marked as solved
13 Replies
0 Views
Smart banner not showing even after tried meta tag. <meta name="apple-itunes-app" content="app-clip-bundle-id=com.yourcompany.yourapp.Clip, app-id=99999999"> And also added apple-app-site-association to domain at root level. and checked by accessing https://example.com/apple-app-site-association, But still does not show smart banner when open link in browser. { "applinks": { "apps": [], "details": [{ "appID": "4RXKMMMMMM.com.example.example1", "paths": [ "/log/*", "/logdrink/*" ] } ] }, "appclips": { "apps": ["4RXKMMMMMM.com.example.example1.Clip"] }, "activitycontinuation": { "apps": [ "4RXKMMMMMM.com.example.example1" ] } } Anything still missing?
Post not yet marked as solved
6 Replies
0 Views
5 widgets , each widget with three different families small, medium and large
Post not yet marked as solved
5 Replies
0 Views
Have you found any workaround?Same problem with siri extension, it was working fine and after added one extension to watch app, it stopped working, but different error.Error ITML-90736:"Invalid Intent Extension. The MiniumOSVersion key in the "Extension.appex" Info.plist file can't be greater than 10.3"iPhone App - Deployment target - iOS 10.0Watch app - Deployment target - watch os 3.0iPhone Siri extension - Deployment target - iOS 12.0It was working fine with above , but when added siri extension to watch app for handing siri custom intents,Watch Siri Extension - Deployment target - watch os 6.0It started showing above error, not sure where to make changes. Changed to minimum deployment target for ios app to iOS 11.0 and then it thrown below errorError ITML-90736:"Invalid Intent Extension. The MiniumOSVersion key in the "Extension.appex" Info.plist file can't be greater than 11.0"
Post not yet marked as solved
4 Replies
0 Views
Ok, but surpringly push updates of iCloud payload does not contain that key, and not getting push updates on watchOS 6.0
Post marked as solved
4 Replies
0 Views
HiI was trying from last many days and still no luck,Have you got any workaround?
Post marked as solved
12 Replies
0 Views
Hi, I understand your issues clearly.The problem was in earlier beta, the check was failing for determining ios 12, but i have got one workaround is when change "Intent Class generation Language" to swift, the same check @available(ios 12, *) in objective c started working in beta 4 or earlier too.Beta 5 might fixed that issue, so not required to make any changes now. This caused many beta users who are using complications, and it stopped because of that @available() check. It was failing for watch app too. So we fixed with changing to swift and released version on app store.And yes, still no workaround forINVoiceShortcutCenter's getAllVoiceShortcutsWithCompletion always returns no shortcuts
Post marked as solved
12 Replies
0 Views
My reply only specific to this point:The App Store version (built with Xcode 10) run on iOS 13 beta 4 seems to fail the availability check in the code for iOS 12 so doesn't even show me the UI to access the Siri shortcuts section of my app! That's a whole separate issue...- This was also in one of our app, but found solution for it. Hope our case will help you. Our app live on app store from more than 5 years and developed in objective c, siri shortcuts with intent class generated files of objective c. If you change code generation for siri shortcuts to swift, the problem will be resolved automatically.- Go to main project build settings (not target project settings)- search for "Intent Class generation Language", and change it from objective c to swift.I am 100% sure you will not believe this solution, but it works like magic. You might required to make more changes as siri shortcut intent classes will be generated in swift and you have to import swift header file wherever you are using siri shortcut intent class files.