How many advanced AppClip experiences are we allowed to configure for an app ?
We want to be able to display different images, titles & subtitles for different clients. Thus we want different invocation dialogs to display that are not dependant on location services being enabled on the device.
The nature of our application also will in most cases present the wrong information if using location services because of the close proximity of all the different experiences. So using the Advanced AppClip Location based experiences isn't really an ideal solution for us.
We want to be able to display different images, titles & subtitles for different clients. Thus we want different invocation dialogs to display that are not dependant on location services being enabled on the device.
The nature of our application also will in most cases present the wrong information if using location services because of the close proximity of all the different experiences. So using the Advanced AppClip Location based experiences isn't really an ideal solution for us.
Hi Ian,
According to Apple documentation the simple answer is: no.
If you scroll down to the code snippet in the link above you'll find this code, which catches the option of location services not enabled:
Good luck
According to Apple documentation the simple answer is: no.
If you scroll down to the code snippet in the link above you'll find this code, which catches the option of location services not enabled:
Code Block swift if confirmationError.code == .doesNotMatch { // The scanned URL wasn't registered for the App Clip. } else { // The user denied location access, or the source of the // App Clip’s invocation wasn’t an NFC tag or visual code. }
Good luck