我有一个 Android 应用程序,它应该打开从 Web 浏览器单击的应用程序上的链接。
我有以下意图过滤器:
<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 中的assetjson 文件中检查了我签名的 sha256 密钥、包名等。一切看起来都是正确的。但是当我单击网站上的链接时,该应用程序仍然无法打开。