2

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. enter image description here 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?

1 Answer 1

1

So the answer to this is simple, android studio did a false positive, the deep links did work and after some time the error is gone.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.