11

在我的应用程序中,我有 3 个活动,MainActivity、SecondaryActivity 和 TertiaryActivity。我希望 SecondaryActivity 成为 Android 6 上特定域的默认应用程序链接处理程序,如本指南中所述。同时,我希望另一个活动 TertiaryActivity 能够处理来自另一个域的链接,但不是默认处理程序,因为我不拥有该域。这是我的 AndroidManifest 来说明:

<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.antonc.applinktest"
          xmlns:android="http://schemas.android.com/apk/res/android">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:theme="@style/AppTheme.NoActionBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>

        <activity android:name=".SecondaryActivity"
                  android:label="@string/app_name"
                  android:theme="@style/AppTheme.NoActionBar">
            <intent-filter android:autoVerify="true"> <!-- TRUE -->
                <data android:scheme="https"
                      android:host="secondary.com"/>
                <action android:name="android.intent.action.VIEW"/>
                <category android:name="android.intent.category.DEFAULT"/>
                <category android:name="android.intent.category.BROWSABLE"/>
            </intent-filter>
        </activity>

        <activity android:name=".TertiaryActivity"
                  android:label="@string/app_name"
                  android:theme="@style/AppTheme.NoActionBar">
            <intent-filter android:autoVerify="false"> <!-- FALSE -->
                <data android:scheme="https"
                      android:host="tertiary.com"/>
                <action android:name="android.intent.action.VIEW"/>
                <category android:name="android.intent.category.DEFAULT"/>
                <category android:name="android.intent.category.BROWSABLE"/>
            </intent-filter>
        </activity>
    </application>

</manifest>

我通读了这个关于应用程序链接的详尽指南,它解释了 Android 上的应用程序链接处理和应用程序验证机制,以下是我在 logcat 中看到的与应用程序验证相关的消息:

03-25 17:54:45.640 1481-1481/com.google.android.gms D/IntentFilterVerificationReceiver: Received ACTION_INTENT_FILTER_NEEDS_VERIFICATION.

03-25 17:54:45.644 1481-30947/com.google.android.gms I/IntentFilterIntentService: Verifying IntentFilter. verificationId:12 scheme:"https" hosts:"tertiary.com secondary.com" package:"com.antonc.applinktest".

03-25 17:54:46.762 1481-30947/com.google.android.gms I/IntentFilterIntentService: Verification 12 complete. Success:false. Failed hosts:tertiary.com,secondary.com.

如您所见,它尝试验证secondary.comtertiary.com,即使我为tertiary.com 上的意图过滤器明确设置了android:autoVerify="false"!

这是Android错误吗?如何确保 IntentFilterIntentService 仅验证我设置了 android:autoVerify="true" 的意图过滤器并将另一个排除在外?

4

2 回答 2

15

这是Android错误吗?

由于该行为似乎已记录在案,因此我将其描述为一种限制。引用文档

当 android:autoVerify 属性存在时,安装您的应用程序会导致系统尝试验证与您应用程序的所有意图过滤器中的 Web URI 关联的所有主机。

(重点补充)

我对此的解释是,如果自动验证行为在应用程序级别是全有或全无。我不清楚他们为什么这样写。如果这是长期计划,我本来希望该autoVerify属性为 on <application>

如何确保 IntentFilterIntentService 仅验证我设置了 android:autoVerify="true" 的意图过滤器并将另一个排除在外?

我猜是把它们放在不同的应用程序中。

于 2016-03-25T22:36:03.460 回答
1

我认为你应该忽略它android:autoVerify="false"而不是设置它。

只有当它存在的属性时才阅读它说的文档。它不会检查值。

当 android:autoVerify 属性存在时,安装您的应用程序会导致系统尝试验证与您应用程序的所有意图过滤器中的 Web URI 关联的所有主机。

于 2021-02-24T13:49:25.913 回答