I am trying to setup applinks in my android app. In my manifest file I have something like this:
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data
android:scheme="https"
android:host="myapp.example.com" />
</intent-filter>
So my question is where EXACTLY will the app try to download the assetlinks.json
file:
- a -
https://myapp.example.com/.well-know/assetlinks.json
- b -
https://example.com/.well-know/assetlinks.json
- c -
https://www.example.com/.well-know/assetlinks.json
Thanks for your help