私はアプリでGCMを刺激するためにandroidHiveからこのチュートリアルをフォローしています。
以前のプロジェクトでは、このブログに従って GCM を統合しました。そして、それはうまくいっています。
しかし、私の新しいプロジェクトでは、これは機能していません。サーバーにデータがありません。この 2 つのプロジェクトの唯一の違いは、以前のプロジェクトでは、GCM 関連のすべてのクラスがプロジェクトのデフォルト パッケージに含まれていたことです。しかし、私の新しいプロジェクトでは、GCM 関連のクラスは「com.gcm」パッケージにあり、別のパッケージのアクティビティ (アプリのデフォルト パッケージ) からそれらを呼び出しています。私は(Log.eを使用して)コードが実行されることを追跡しています
//in -- MainActivity.java
// Check if regid already presents
if (regId.equals("")) {
// Registration is not present, register now with GCM
GCMRegistrar.register(this, SENDER_ID);
// after this nothing is happening
} else {
私はすべてのクラスとすべての可能な場所に「Log.e」を持っています:(しかし、それらは何も印刷していません。
サービスと受信機が正しく設定されていないと思います。だから、マニフェストを変更する必要があると思います。しかし、私は何を変更する必要はありません。誰でも私を助けることができますか?
ブログのマニフェスト:
In the following code replace all 'com.androidhive.pushnotifications'
with your android package name.
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.androidhive.pushnotifications"
android:versionCode="1"
android:versionName="1.0" >
<!-- GCM requires Android SDK version 2.2 (API level 8) or above. -->
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />
<!-- GCM connects to Internet Services. -->
<uses-permission android:name="android.permission.INTERNET" />
<!-- GCM requires a Google account. -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<!-- Keeps the processor from sleeping when a message is received. -->
<uses-permission android:name="android.permission.WAKE_LOCK" />
<!-- Creates a custom permission so only this app can receive its messages. -->
<permission
android:name="com.androidhive.pushnotifications.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
// i have changed 'com.androidhive.pushnotifications' to 'com.gcm' but getting error.
// so i have rplace 'com.androidhive.pushnotifications' with my default package name.
<uses-permission android:name="com.androidhive.pushnotifications.permission.C2D_MESSAGE" />
// i have changed 'com.androidhive.pushnotifications' to 'com.gcm' but not woeking
<!-- This app has permission to register and receive data message. -->
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<!-- Network State Permissions to detect Internet status -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<!-- Permission to vibrate -->
<uses-permission android:name="android.permission.VIBRATE" />
<!-- Main activity. -->
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<!-- Register Activity -->
<activity
android:name=".RegisterActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Main Activity -->
<activity
android:name=".MainActivity"
android:configChanges="orientation|keyboardHidden"
android:label="@string/app_name" >
</activity>
<receiver
android:name="com.google.android.gcm.GCMBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<!-- Receives the actual messages. -->
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<!-- Receives the registration id. -->
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="com.androidhive.pushnotifications" />
// what will be this?
// replace with default package or
'com.gcm' package ?
</intent-filter>
</receiver>
<service android:name=".GCMIntentService" />
// i have change this to 'com.gcm.GCMIntentService'
</application>
</manifest>
..
<permission
android:name="com.androidhive.pushnotifications.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
// i have changed 'com.androidhive.pushnotifications' to 'com.gcm' but getting error.
// so i have rplace 'com.androidhive.pushnotifications' with my default package name.
<uses-permission
android:name="com.androidhive.pushnotifications.permission.C2D_MESSAGE" />
// i have changed 'com.androidhive.pushnotifications' to 'com.gcm' but not woeking
..
<service android:name=".GCMIntentService" />
// i have change this to 'com.gcm.GCMIntentService'
..
<receiver
android:name="com.google.android.gcm.GCMBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<!-- Receives the actual messages. -->
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<!-- Receives the registration id. -->
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="com.androidhive.pushnotifications" />
// what will be this?
// replace with default package or
'com.gcm' package ?
</intent-filter>
</receiver>
編集:(解決策)
エランがこの質問の答えを示唆したよう に、解決策は質問の答えにあります。