19

我在我的 Android 应用程序中使用 branch.io SDK,并希望我的应用程序成为 Android 6 上分支链接的默认处理程序,如此处 Android 指南)和此处(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>

但是,当我在我的设备上安装构建时,当我单击具有正确主机和路径的链接时,我仍然会看到选择器对话框。在阅读了这个关于应用链接的广泛指南之后,我相信这正在发生,因为我的设备从未验证我的应用的意图过滤器。例如,当我从 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 过滤器?

4

3 回答 3

15

通过将此数据标签移动到单独的意图过滤器中来解决此问题:

<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 的消息现在按预期显示在日志中。

于 2016-03-28T16:41:15.870 回答
7

让 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。verifyId:9 方案:“https” 主机:“myhost1.com myhost2.com myhost3.com” 包:“com.mydeeplink.app”。[上下文 service_id=244]

在安装时,如果ANYONE主机未能直接打开深层链接,则会验证清单声明。失败意味着将提示用户选择您的应用程序或浏览器。

注意 注意 注意:如果您在清单中声明了将来将被删除的任何测试环境。它将导致您的应用程序的 IntentFilterIntentOp FAILURE。它会破坏深层链接的直接打开。

对于稍后将被删除的测试环境,不要使用 android:autoVerify="true"。否则,您的生产应用程序深层链接直接打开可能会因新安装而中断。

于 2021-03-11T09:12:30.413 回答
1

根据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 将打开默认的应用选择面板。

于 2020-12-11T10:14:27.597 回答