- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
在我的应用程序中,我有 3 个 Activity ,MainActivity、SecondaryActivity 和 TertiaryActivity。我希望 SecondaryActivity 成为 Android 6 上特定域的默认应用程序链接处理程序,如 this guide 中所述.同时,我希望另一个 Activity 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>
我通读了这个extensive guide在解释 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.com 和 tertiary.com,即使我为 tertiary.com 上的 intent 过滤器明确设置了 android:autoVerify="false"!
这是 Android 错误吗?如何确保 IntentFilterIntentService 仅验证我为其设置了 android:autoVerify="true"的 Intent 过滤器,而将另一个过滤器排除在外?
最佳答案
Is this an Android bug?
由于该行为似乎已记录在案,因此我将其描述为一种限制。引用 the documentation :
When the android:autoVerify attribute is present, installing your app causes the system to attempt to verify all hosts associated with the web URIs in all of your app's intent filters.
(强调)
我对此的解释是,如果自动验证行为在应用程序级别是全有或全无。我不清楚为什么他们那样写。如果那是长期计划,我会期待 autoVerify
属性位于 <application>
.
How do I make sure that IntentFilterIntentService only verifies the intent filter for which I have set android:autoVerify="true" and leaves the other one out?
我想将它们放在单独的应用程序中。
关于Android 尝试验证主机,尽管 android :autoVerify ="false",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36229090/
整合 App Links进入我的应用程序,我将此代码放入 AndroidManifest: " /> " /> 设置 compileSdkV
在我的应用程序中,我有 3 个 Activity ,MainActivity、SecondaryActivity 和 TertiaryActivity。我希望 SecondaryActivity 成为
我在我的 Android 应用程序中使用 branch.io SDK,并希望我的应用程序成为 Android 6 上分支链接的默认处理程序,如所述 here (Android 指南)和 here (B
我是一名优秀的程序员,十分优秀!