Didier Prophete
Didier Prophete

Reputation: 2031

assetlinks domain vs host

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:

Thanks for your help

Upvotes: 0

Views: 465

Answers (1)

fernandospr
fernandospr

Reputation: 3051

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

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

Upvotes: 1

Related Questions