Android:安装 GoSMS Pro 时收听传入的短信

Android: Listen for incomming sms when GoSMSPro installed

这是我的代码:

<receiver android:name=".IncomingSms"     android:permission="android.permission.BROADCAST_SMS">
    <intent-filter android:priority="2147483648">
        <action android:name="android.provider.Telephony.SMS_RECEIVED" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</receiver>

我的应用程序在没有 GoSMSPro 时工作正常 installed.I 先安装我的应用程序然后安装 GoSMSPro,但仍然无法接收短信。

我还有一个问题,就是安装了GoSMSPro,BeeTalk如何接收注册短信?

Android: Listen for incomming sms when GoSMSPro installed

一些应用程序注册了具有最高优先级的 SMS BroadcastReceiver,因此这些应用程序首先接收收到的 SMS 的回调并停止此接收器,因此其他也注册此的应用程序将不会接收回调。

备用选项,您可以使用 ContentObserver 在有任何消息时接收回调 received/deleted 等