我在我的Android应用中使用了branch.io SDK,并想让我的应用成为Android 6上分支链接的默认处理程序,如here(Android指南)和here所述( Branch.io指南)
这是我在AndroidManifest.xml中的活动声明:
<activity android:name="com.mypackage.MyActivity"
android:launchMode="singleTask">
<intent-filter tools:node="merge" android:autoVerify="true">
<data android:scheme="@string/url_scheme" android:host="open"/>
<data android:scheme="https"
android:host="@string/branch_io_host"
android:pathPrefix="@string/branch_io_path_prefix"/>
<data android:scheme="http"
android:host="@string/branch_io_host"
android:pathPrefix="@string/branch_io_path_prefix"/>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
</intent-filter>
</activity>
但是当我在我的设备上安装构建时,当我点击具有正确主机和路径的链接时,我仍然会看到选择器对话框。在阅读完extensive guide on app linking之后,我相信这种情况正在发生,因为我的设备永远不会验证我的应用的意图过滤器。例如。当我从Play商店安装 Twitter 应用程序时,我在LogCat中看到这些消息:
03-24 15:04:27.231: D/IntentFilterVerificationReceiver(16965): Received ACTION_INTENT_FILTER_NEEDS_VERIFICATION.
03-24 15:04:27.248: I/IntentFilterIntentService(16965): Verifying IntentFilter. verificationId:2 scheme:"https" hosts:"twitter.com www.twitter.com ads.twitter.com" package:"com.twitter.android".
03-24 15:04:30.134: I/IntentFilterIntentService(16965): Verification 2 complete. Success:true. Failed hosts:.
但是,当我安装我的应用时,我不会看到这样的消息。我尝试了发布和调试版本,尝试将其上传到Play商店中的Alpha测试并从那里安装,结果相同。为什么Android不验证我的Intent过滤器?
答案 0 :(得分:10)
通过将此数据标记移动到单独的intent过滤器中来解决此问题:
<data android:scheme="@string/url_scheme" android:host="open"/>
这就是AndroidManifest现在的样子:
<activity android:name="com.mypackage.MyActivity"
android:launchMode="singleTask">
<intent-filter tools:node="merge" android:autoVerify="true">
<data android:scheme="https"
android:host="@string/branch_io_host"
android:pathPrefix="@string/branch_io_path_prefix"/>
<data android:scheme="http"
android:host="@string/branch_io_host"
android:pathPrefix="@string/branch_io_path_prefix"/>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
</intent-filter>
<intent-filter>
<data android:scheme="@string/url_scheme" android:host="open"/>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
</intent-filter>
</activity>
来自IntentFilter的消息现在按预期显示在日志中。
答案 1 :(得分:1)
Deeplink 无需用户提示即可工作
假设您的应用清单声明了多个主机,例如 myhost1.com、myhost2.com 和 myhost3.com,
<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="myhost1.com"
android:pathPrefix="/start" />
</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"
android:host="myhost2.com"
android:pathPrefix="/start" />
</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"
android:host="myhost3.com"
android:pathPrefix="/start" />
</intent-filter>
并为每个人部署 assetlinks.json
https://myhost1.com/.well-known/assetlinks.json
https://myhost2.com/.well-known/assetlinks.json
https://myhost3.com/.well-known/assetlinks.json
从 ADB 或 Google Play 商店安装应用程序时,请继续检查您的 Logcat 中的 IntentFilterIntentOp 标签,如下所示
I/IntentFilterIntentOp:验证 IntentFilter。验证Id:9 方案:“https” 主机:“myhost1.com myhost2.com myhost3.com” 包:“com.mydeeplink.app”。 [CONTEXT service_id=244 ]
在安装时,如果 ANYONE 主机失败,您将无法直接打开深层链接,则会验证清单声明。失败意味着系统会提示用户选择您的应用或浏览器。
NOTE NOTE 注意:如果您在清单中声明了将来将被删除的任何测试环境。它会导致您的应用程序的 IntentFilterIntentOp FAILURE。会破坏直接打开深层链接。
对于稍后将被移除的测试环境,请勿使用 android:autoVerify="true"。否则,您的生产应用深层链接直接打开可能会因新安装而中断。
答案 2 :(得分:0)
根据https://developer.android.com/training/app-links,对于可能像我一样粗心的人:
Android 6.0(API级别23)及更高版本上的Android应用链接允许应用将自身指定为给定链接类型的默认处理程序。
我碰巧在Android 5.1设备上对其进行了随机测试,而在Android 6以下版本中,意图过滤器可以工作,但android:autoVerify="true"
不能。您不会在IntentFilterIntentSvc
中看到adb logcat
登录,这意味着不会进行URL验证。在这种情况下,Android将打开默认的应用选择面板。