【发布时间】:2020-06-26 05:25:58
【问题描述】:
我尝试在特定网址上调用我的应用。为此,我在清单中使用了这个意图过滤器:
<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="${hostName}"
android:pathPrefix="/konfirmasi-email" />
</intent-filter>
这适用于谷歌浏览器和三星互联网,但不适用于小米的默认浏览器
【问题讨论】:
-
我认为这是您应该在 Android 设置中查找的一些晦涩且特定于供应商的设置。
标签: android android-intent intentfilter applinks