三星消息应用程序不会深入链接到我的应用程序

时间:2017-08-08 16:02:11

标签: android sms samsung-galaxy

我有一个应用程序能够在我收到具有特定格式的短信时启动,它在使用Android股票消息应用程序时正常工作但是,当使用他们的消息应用程序在三星设备上测试并单击链接时,它不会启动我的应用程序,而是尝试打开消息应用程序内的链接,AndroidManifest.xml上的当前实现

<activity android:name="com.example.SMSInterceptor"
    android:configChanges="keyboardHidden|orientation|screenSize">
    <intent-filter>
        <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" />
        <data android:host="example.com" />
    </intent-filter>
</activity>

任何人都知道任何解决方案吗?任何帮助表示赞赏。

1 个答案:

答案 0 :(得分:0)

添加到您的意图过滤器自动验证如下:

<intent-filter android:autoVerify="true">