0

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

Didier Prophete
  • 1,834
  • 1
  • 12
  • 11

1 Answers1

1

According to this Google Guide, it'll try to download from:

https://myapp.example.com/.well-known/assetlinks.json

fernandospr
  • 2,976
  • 2
  • 22
  • 43