11

GCM クライアントを作成しようとしています。登録は問題ありません。サーバーからのメッセージも正常に送信しています。ただし、クライアントはインテントを開始しません。それは言う

09-30 08:39:59.795: W/GTalkService(4667): [DataMsgMgr] ブロードキャスト インテント コールバック: result=CANCELLED forIntent { act=com.google.android.c2dm.intent.RECEIVE cat=[dol.framework] (hasエクストラ) }

私の意図

public class GCMService extends IntentService{

    public GCMService(String name) {
        super("GCMService");
    }

    protected void onHandleIntent(Intent intent) {
        Bundle extras = intent.getExtras();
        String messageType = gcm.getMessageType(intent);
        android.util.Log.i("hi","test");
        if (!extras.isEmpty()) {

            if (GoogleCloudMessaging.MESSAGE_TYPE_MESSAGE.equals(messageType)) {
                Logger.logInUI(tag, "Received: " + extras.toString());
            }
        }
        GCMReceiver.completeWakefulIntent(intent);
    }
}

そして私のレシーバー

public class GCMReceiver extends WakefulBroadcastReceiver {
    public void onReceive(Context context, Intent intent) {
        ComponentName comp = new ComponentName(context.getPackageName(),
                GCMService.class.getName());
        startWakefulService(context, (intent.setComponent(comp)));
        Logger.log("hi","eetett");
        setResultCode(Activity.RESULT_OK);
    }
}

そして最後に私のマニフェスト

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="dol.framework"
    android:versionCode="1"
    android:versionName="1.0" >
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />

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

    <permission android:name="dol.framework.gcm.permission.C2D_MESSAGE"
        android:protectionLevel="signature" />
    <uses-permission android:name="dol.framework.gcm.permission.C2D_MESSAGE" />


    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="18" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:name="dol.framework.widget.DolApplication"
        android:label="Dol Framework"
        android:theme="@style/AppTheme" >
        <activity
            android:name="dol.framework.activity.DebugActivity"
            android:configChanges="orientation|keyboardHidden|screenSize"
            android:label="@string/app_name"
            android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <receiver
            android:name="dol.framework.GCMReceiver"
            android:permission="com.google.android.c2dm.permission.SEND" >
            <intent-filter>
                <action android:name="com.google.android.c2dm.intent.RECEIVE" />
                <category android:name="dol.framework" />
            </intent-filter>
        </receiver>

        <service android:name="dol.framework.GCMService"/>
    </application>

</manifest>

テキストの壁で申し訳ありません。GCMService と GCMReceiver の両方が私のパッケージ (dol.framework) の一番上にあります。私は何を間違っていますか?それ以外はあまりやっていません。デバイスを登録するだけで、このデバイスにメッセージを送信しています。ログは上部にメッセージを出力しますが、何もしません。サービスか何かを始めるべきではありませんか?例に関連するものは何も見ませんでした。

4

2 に答える 2

6

GCMに定義して使用した権限には、dol.framework.gcm.permissionがあります。アプリのパッケージは dol.framework であるため、これは dol.framework.permission である必要があります。

于 2013-09-30T09:56:23.727 に答える
0

マニフェストのレシーバー ビットを次のように変更してみてください。

   <receiver
        android:name=".GCMReciever"
        android:exported="true"
        android:permission="com.google.android.c2dm.permission.SEND" >
        <intent-filter>
            <action android:name="com.google.android.c2dm.intent.RECEIVE" />
            <action android:name="com.google.android.c2dm.intent.REGISTRATION" />
            <action android:name="dol.framework" />
        </intent-filter>
    </receiver>
于 2013-09-30T09:43:34.667 に答える