Reputation: 2031
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:
https://myapp.example.com/.well-know/assetlinks.json
https://example.com/.well-know/assetlinks.json
https://www.example.com/.well-know/assetlinks.json
Thanks for your help
Upvotes: 0
Views: 465
Reputation: 3051
According to this Google Guide, it'll try to download from:
https://myapp.example.com/.well-known/assetlinks.json
Upvotes: 1