我尝试在我的 android 应用程序上添加应用程序链接,并使用 Android Studio 中提供的应用程序链接助手来创建 assestlinks.json。此外,我使用 GitHub 页面来托管assetlinks.json。我使用digitalassetlinks测试了 GitHub 主页,以验证托管页面。URL 看起来不错,数字资产验证没有错误
以下是我在清单中的代码
<activity android:name=".MainActivity2">
<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"
android:host="revan.github.io" />
</intent-filter>
</activity>
但是,应用程序链接不起作用。我尝试了不同的选择,但没有任何效果。在验证状态下总是成功 = false
I/IntentFilterVerificationReceiver: Verifying IntentFilter. verificationId:1 Succes= false scheme:"https" hosts:
是因为 github 页面中的 SSL/TLS 问题吗?非常感谢任何帮助