我有一个应用程序,当我收到某种格式的短信时,它能够启动,它在使用 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>
任何人都知道任何解决方案?任何帮助表示赞赏。