I have app links in my app for two subdomains.
Assetlinks.json is already placed in our host's well-known directory and returns proper json. When I use the following intent-filter, everything works fine.
<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.example.com" />
</intent-filter>
Verifying IntentFilter. verificationId:27 scheme:"https" hosts:"www.example.com" package:"com.example.seven". [CONTEXT service_id=244 ] Verification 27 complete. Success:true. Failed hosts:. [CONTEXT service_id=244 ]
But when I try to set up our intent filter for multiple subdomains 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="*.example.com" />
</intent-filter>
The verification is never passed: Verifying IntentFilter. verificationId:26 scheme:"https" hosts:"example.com" package:"com.example.seven". [CONTEXT service_id=244 ] Verification 26 complete. Success:false. Failed hosts:example.com. [CONTEXT service_id=244 ]
Has anyone experienced this issue and what can be done? Thanks in advance!