Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When is the apple-app-site-association file being fetched?

I have an application on store right now. It did not worked with universal linking. Then I update application and add Apple-app-site-association file in to my website. Re-install the app is likely the solution, but my app is already distributed in App Store, it is unlikely to ask user to delete it and installed again.

Is there any opputunity to let the iOS or app to fetch my updated apple-app-site-association file.

like image 598
slytrkmn Avatar asked Oct 03 '17 13:10

slytrkmn


People also ask

How do I get the Apple App association file?

To add the associated domain file to your website, create a file named apple-app-site-association (without an extension). Update the JSON code in the file for the services you support on the domain. For universal links, be sure to list the app identifiers for your domain in the applinks service.

Where is apple application site Association file?

The file needs to be accessible via HTTPS—without any redirects—at https://<domain>/apple-app-site-association or https://<domain>/.well-known/apple-app-site-association .

Is Apple-App-site-Association cached?

Apple caches the apple-app-site-association file on app install. If you're having trouble clearing the apple-app-site-association file cache on your device, try updating the app or turn Universal Linking off (and on again).

How long does App Store submission take?

On average, 90% of submissions are reviewed in less than 24 hours. You'll be notified by email of status changes. You can also check the review status of your submission in the My Apps section of App Store Connect or on the App Store Connect app for iPhone and iPad.


1 Answers

The short answer is: Only when the app is installed or updated.

The good news is that they don't have to delete the app and reinstall it, they can simply update the app and it will re-cache the AASA file. This means that you need to push out a new version ASAP and users that update to that version will cache the newly configured AASA. Otherwise there is no other way to force all devices to

To save yourself the hassle of AASA files, use a 3rd party like Branch (full-disclosure I work there) who will do the AASA handling for you.

like image 165
clayjones94 Avatar answered Oct 06 '22 13:10

clayjones94