AppLinks for Android

Viewed 666

when I click an applink,I need to chose the chrome or my app

enter image description here

I Check my website Google Statement List Generator and Tester i got below

Success! Host XXX grants app deep linking to XXX.

But adb shell dumpsys package domain-preferred-apps shows

"Status: undefined"

Anyone knows how to fix it?

Manifest.xml `

            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />

            <data
                android:scheme="https"
                android:host="XXXX.XX"
                android:path="/test" />
        </intent-filter>`

the applinks status is not "always" how to make it right???

"Status: undefined"
2 Answers
Related