I upload my instant app apks to Play store, it gives the following error :
Your website
www.tomtop.com
has not yet been linked to your app through a digital asset link agreement. Please link your website to your app via digital asset link agreement.
I ran the digital asset links generator, it returns successful for associating with my app and web site. Why do I get this error?
This is my AndroidManifest:
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<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="www.tomtop.com"
android:pathPrefix="/instant" />
</intent-filter>
<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="http"
android:host="www.tomtop.com"
android:pathPrefix="/instant" />
</intent-filter>