GCM没有在android 4.0.4设备上接收消息

时间:2015-03-17 14:20:30

标签: java android google-cloud-messaging android-manifest

我正在尝试让GCM在带有android 4.0.4的设备上运行。 首先,从设备发送到服务器到另一个设备是没有问题的,它是接收部分将无法工作。其次,我也在使用带有android 5的设备,在那款手机上它一切正常。我认为它可能与设备有关,但我不确定(MEDION p4013)。它是android 4.0.4所以你不需要一个谷歌帐户来使它工作,但要确保我也在手机上激活了一个帐户,但仍然没有结果。

这是我的清单:

<?xml version="1.0" encoding="utf-8"?>

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/>

<permission android:name="com.example.tom.stapp3.permission.C2D_MESSAGE"
    android:protectionLevel="signature"/>
<uses-permission android:name="com.example.tom.stapp3.permission.C2D_MESSAGE"/>

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme"
    android:name=".application.StApp">

    <receiver android:name=".gcm.GCMBroadCastReceiver"
        android:permission="com.google.android.c2dm.permission.SEND">

        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.RECEIVE"/>
            <category android:name="com.example.tom.stapp3"/>
        </intent-filter>
    </receiver>

    <service android:name=".gcm.GCMMessageHandler"/>
    <meta-data android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version"/>

    <service
        android:name=".service.ShimmerService"
        android:enabled="true">
    </service>

    <activity
        android:name=".activity.FragmentViewer"
        android:label="Stapp 3" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name=".activity.ProfileView"
        android:label="@string/title_activity_profile_view">
    </activity>
    <activity
        android:name=".activity.LeaderboardView"
        android:label="@string/title_activity_leaderboard_view"
        android:launchMode="singleTop">
    </activity>
    <activity android:name=".activity.StrangerView"
        android:label="@string/title_activity_stranger_view">
        <meta-data
            android:name="android.support.PARENT_ACTIVITY"
            android:value="com.example.tom.stapp3.activity.LeaderboardView" />
    </activity>
    <activity
        android:name=".activity.ConnectionView"
        android:label="@string/title_activity_connection_view" >
    </activity>

    <activity
        android:name=".activity.QuestList"
        android:label="@string/title_activity_quest_view" >
    </activity>
    <activity
        android:name=".activity.SoloQuestDescription"
        android:label="@string/title_activity_quest_description" >
    </activity>
    <activity
        android:name=".activity.GraphView"
        android:configChanges="orientation|screenSize"
        android:label="@string/title_activity_graph">
    </activity>
    <activity
        android:name=".activity.GCMTestActivity"
        android:label="@string/title_activity_internet__connection" >
    </activity>
</application>

广播接收器:

        @Override
        public void onReceive(Context context, Intent intent) {
            ComponentName comp = new ComponentName(context.getPackageName(), GCMMessageHandler.class.getName());
            Log.d("received", "message");
            startWakefulService(context, intent.setComponent(comp));
            setResultCode(Activity.RESULT_OK);
        }

和处理程序:

private Handler handler;

public GCMMessageHandler() {
    super("GCMMessageHandler");
}

@Override
public void onCreate() {
    super.onCreate();
    handler = new Handler();
}

@Override
protected void onHandleIntent(Intent intent) {
    Bundle extras = intent.getExtras();
    GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(this);
    String messageType = gcm.getMessageType(intent);
    final int challengeId = Integer.parseInt(extras.getString("challenge_id"));
    final String message = extras.getString("message");
    handler.post(new Runnable() {
        @Override
        public void run() {
            if(challengeId == -1) {
                Toast.makeText(getApplicationContext(), message, Toast.LENGTH_LONG).show();
            } else {
                //TODO implementatie
            }
        }
    });
    GCMBroadCastReceiver.completeWakefulIntent(intent);
}

1 个答案:

答案 0 :(得分:1)

好的,我找到了,

问题出在app的build.gradle中。 applicationId与应用程序的包名称不匹配。显然,对于旧版本的Android,您会遇到问题,但是对于较新版本,它会自动将其更改为某个地方。

相关问题