安装 Go SMS 后,我的应用程序没有收到 SMS。我设置了最高优先级,并尝试在安装 Go SMS 应用程序之前安装我的应用程序。但是,Go SMS 总是在我之前收到 SMS。(第一个应用程序安装的概念在我的手机上不起作用。)
我很好奇 Go SMS 开发人员在做什么。他们的应用程序如何总是在我之前拦截短信?
我的应用程序在没有 Go SMS 的情况下运行良好。不管怎样,这是我的清单。也许我做错了什么。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.test.ansmsreceiver"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.RECEIVE_SMS" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.test.ansmsreceiver.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name="com.test.ansmsreceiver.SMSReceiver" >
<intent-filter android:priority="2147483647">
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
<action android:name="android.provider.Telephony.NEW_OUTGOING_SMS" />
</intent-filter>
</receiver>
</application>
我发现了与我的问题相关的其他问题,但仍然找不到解决方法。
编辑:我的测试项目在 Github 上:https ://github.com/entryleveldev/ansmsreceiver 。
Edit2:仍然不确定android如何决定哪个接收者首先获得意图。根据我的测试,Go SMS 总是能得到意图。UID 和安装顺序无关紧要。但是当我测试我的应用程序和 Handcent SMS 时,安装顺序确实很重要。也许 Go SMS 使用某种 hacky 方式来做到这一点。
这是 Go SMS 清单中的 SmsReceiver。
<receiver android:name=".smspopup.SmsReceiver" android:permission="android.permission.BROADCAST_SMS">
<intent-filter android:priority="2147483647">
<action android:name="android.provider.Telephony.SMS_RECEIVED"></action>
<category android:name="android.intent.category.DEFAULT"></category>
</intent-filter>
<intent-filter android:priority="2147483647">
<action android:name="android.provider.Telephony.GSM_SMS_RECEIVED"></action>
<category android:name="android.intent.category.DEFAULT"></category>
</intent-filter>
<intent-filter >
<action android:name="android.provider.Telephony.WAP_PUSH_RECEIVED"></action>
<data android:mimeType="application/vnd.wap.mms-message"></data>
</intent-filter>
<intent-filter >
<action android:name="com.android.mms.transaction.MESSAGE_SENT"></action>
</intent-filter>
</receiver>
他们的默认设置是禁用其他消息通知(abortBroadcast)。这对我来说真的很糟糕。