Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/url/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在Android版本4.0.4中接收通过GCM发送的消息_Android_Android Intent_Google Cloud Messaging - Fatal编程技术网

在Android版本4.0.4中接收通过GCM发送的消息

在Android版本4.0.4中接收通过GCM发送的消息,android,android-intent,google-cloud-messaging,Android,Android Intent,Google Cloud Messaging,通过http发送消息后。我无法在android设备版本4.0.4上接收消息。当启用调试但意图执行操作com.google.android.c2dm.intent.REGISTRATION时,它将触发OnReceive()方法,该方法应为com.google.android.c2dm.intent.RECEIVE。 所以我无法得到消息。休息一下,一切正常 我的Android.Manifest文件代码是 <?xml version="1.0" encoding="utf-8"?> <

通过http发送消息后。我无法在android设备版本4.0.4上接收消息。当启用调试但意图执行操作com.google.android.c2dm.intent.REGISTRATION时,它将触发OnReceive()方法,该方法应为com.google.android.c2dm.intent.RECEIVE。 所以我无法得到消息。休息一下,一切正常

我的Android.Manifest文件代码是

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto" package="hellomultiscreen" android:versionCode="11" android:versionName="2.2.0" >
  <uses-sdk android:minSdkVersion="8" />
  <uses-permission android:name="android.permission.INTERNET" />
  <permission android:name="hellomultiscreen.permission.C2D_MESSAGE" android:protectionLevel="signature" />
  <uses-permission android:name="hellomultiscreen.permission.C2D_MESSAGE" />
  <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />


  <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

  <uses-permission android:name="android.permission.WAKE_LOCK" />
  <uses-permission android:name="android.permission.VIBRATE" />
  <uses-permission android:name="android.permission.GET_ACCOUNTS" />
  <application android:label="Online Booking" >

    <!-- Only C2DM servers can send messages for the app. If permission is not set - any other app can generate it -->
        <receiver android:name="hellomultiscreen.MyGCMBroadcastReceiver" android:permission="com.google.android.c2dm.permission.SEND" >
            <!-- Receive the actual message -->
            <intent-filter>
                <action android:name="com.google.android.c2dm.intent.RECEIVE" />
        <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
        <action android:name="com.google.android.c2dm.intent.RETRY" />
                <category android:name="hellomultiscreen" />
            </intent-filter>

        </receiver>
    <service android:name="hellomultiscreen.MyIntentService" enabled="true" />
    </application>
    <uses-sdk />
</manifest>
试试这个接收器

public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        // Explicitly specify that GcmIntentService will handle the intent.
        ComponentName comp = new ComponentName(context.getPackageName(),
                GcmIntentService.class.getName());
        // Start the service, keeping the device awake while it is launching.
        startWakefulService(context, (intent.setComponent(comp)));
        setResultCode(Activity.RESULT_OK);
    }
}
public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
        // Explicitly specify that GcmIntentService will handle the intent.
        ComponentName comp = new ComponentName(context.getPackageName(),
                GcmIntentService.class.getName());
        // Start the service, keeping the device awake while it is launching.
        startWakefulService(context, (intent.setComponent(comp)));
        setResultCode(Activity.RESULT_OK);
    }
}