so i'm trying to implement deep linking in my app. The problem that i'm having is that the android studio app links assistant keeps saying that one web check has failed.
I have tried everything, ended up adding both App signing key certificate and Upload key certificate(this certificate is the same one I got from the console when i ran the command to get the key.
<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" />
<data android:host="example" />
<data android:pathPrefix="/example" />
</intent-filter>
Also, my https://example/.well-known/assetlinks.json looks like this
[{"relation": ["delegate_permission/common.handle_all_urls"],"target": {"namespace":"android_app","package_name": "com.example","sha256_cert_fingerprints":["11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:1:11:11:11:11:11:11:11:11:11"]}}]
What could be the problem here?