有人知道哪个权限用于接收Android中的WAP推送消息? 请让我知道它的描述。
答案 0 :(得分:2)
http://code.google.com/android/c2dm/index.html
http://www.vogella.de/articles/AndroidCloudToDeviceMessaging/article.html
答案 1 :(得分:2)
您可能想尝试:
<intent-filter>
<action
android:name="android.provider.Telephony.WAP_PUSH_RECEIVED" />
<data android:mimeType="application/vnd.wap.sic" />
</intent-filter>
有关Android推送的各种Android版本的具体支持的信息不同,请告诉我这是否适合您。