This is my AndroidManifest.xml
<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="*.example.com" />
</intent-filter>
This is my assetlinks.json
{
"relation": ["delegate_permission/common.handle_all_urls"],
"target": {
"namespace": "android_app",
"package_name": "com.example.main",
"sha256_cert_fingerprints": ["256 sha256_cert_fingerprints"]
}
}
This is how app links verified page looks like when the app is installed,
which means link is not verified automatically. But when I mentioned sandbox.example.com
in AndroidManifest.xml
then link is auto verified as soon as app is installed.
Do wild card domains also auto verified? If so, Am I doing something wrong with my configuration?
Note: Here I am using example.com
since I don't want to show actual domain?