Post

Replies

Boosts

Views

Activity

Reply to App Clip Capability
I do not believe it does. From my understanding its closely tied to the App Store. So apps distributed with an enterprise signing won't be able to make use of it. We have both types of accounts and I've only had the option for our standard App Store account.
Jul ’20
Reply to QR Codes for App Clips
Better to use a generic QR code as I don't think an Android phone would be able to read the new circular QR code like format Apple are introducing. Just create a QR code with a URL (e.g. https://example.com/store), and then add that URL as an App Clip in your iOS app. This will mean users who have iOS 14 will get your app clip when they scan the QR code, everyone else (including Android) users will just go to that URL in their browser.
Jul ’20
Reply to What's the correct way to add Clip target in an existing old cocoapods project?
Hard to say without your Pod file. But something like this should work: project 'example.xcodeproj' platform :ios, '10.0' abstract_target 'ExampleApp' do 	use_frameworks! 	pod 'Alamofire', '~> 4.9.1' 	target 'Main App' do 	end 	target 'App Clip' do 	end end The targets should match the target names in Xcode. You can of course just include a pod in one of the individual targets if needed.
Jul ’20
Reply to App Clips scanned by Android Users
Well if you registered https://example.com/store/1 as an App Clip then on an iOS device running iOS14 it would open the App Clip. iOS 13 and less it would pop up a notification if NFC saying a URL has been scanned, do you want to open in Safari. Same with a QR code. So on an Android device it would go to that URL in a browser. You have to own https://example.com to link it to an App Clip so on your web server serve some content from https://example.com/store/1 and the Android device will load whatever content is there.
Jul ’20
Reply to App Clips scanned by Android Users
App Clip codes are just URLs (If using NFC or QR codes). So it would just go to that URL in a browser. The special circular App Clip code has a standard NFC chip in it and the outer circles are like a custom QR code pattern. I don’t think Android apps could read that. But they should be able to use the NFC tag and open the URL.
Jul ’20