我想在打开此网址时打开我的应用(例如:https://www.google.com) 当我在浏览器中打开该网址时,我无法选择打开您的应用。
我已经在manifest活动标记中实现了此代码的深层链接。
<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:host="www.google.com"
android:scheme="http" />
<data android:scheme="https" />
</intent-filter>
但为什么它不起作用。如果我方有任何错误,请告诉我。
我已经为此进行了大量的Google搜索,但在我的代码中找不到任何问题。
答案 0 :(得分:1)
composer install
这用于App Links 系统将通过解析位于https://www.google.com/.well-known/assetlinks.json的文件来检查应用是否有权处理此类网址。
由于您不是Google,因此您无权使用App Links方法访问Google的网址。 这些网址可能已被谷歌自己的应用程序(在同一文件中定义)捕获。