Applinks 意图不适用于 android

Applinks intents not working on android

我有一个 Android 应用程序,它应该打开从网络浏览器点击的应用程序上的链接。

我有以下意图过滤器:

 <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />

        </intent-filter>

        <intent-filter android:autoVerify="true">
            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />
            <action android:name="android.intent.action.VIEW" />


            <data android:scheme="http" android:host="www.mysite.com" />
            <data android:scheme="https" android:host="www.mysite.com" />
        </intent-filter>

我还从 mysite/.well-known/assetlinks.json 中的资产json 文件检查了我签名的 sha256 密钥、包名称等。一切看起来都是正确的。但是当我点击网站上的链接时,应用程序仍然没有打开。

<activity android:name=".YourActivity">

    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>

    <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:scheme="http" />
        <data android:host="mysite.com" />
    </intent-filter>

</activity>