*.example.com from United States purchased app.
One minute ago.
When deep linking is enabled, and a user clicks a link on their device matching a specified domain, the user will be prompted to open the link within your app instead of the mobile browser.
On Android, this works automatically without further configuration.
For Apple, please follow the steps described below:
To enable deeplinking, add your apple-app-site-association (AASA) file at the root of your web application, like so:
// https://www.example.com/.well-known/apple-app-site-association // Copy and edit the contents below for your website/app association: { "webcredentials": { "apps": [ "ABCDE12345.com.example.app" ] }, "activitycontinuation": { "apps": [ "ABCDE12345.com.example.app" ] }, "applinks": { "apps": [], "details": [{ "appID": "ABCDE12345.com.example.app", "paths": [ "/*" ] }] } }
Where ABCDE12345 is the app identifier to be retrieved from apple developer portal and com.example.app is bundle-identifier of your Red Goose iOS app.
*.example.com from United States purchased app.
One minute ago.