1

アプリで GCM を動作させるのに問題があります。私の webapp は django を使用しており、次のアプリを使用しています: https://github.com/bogdal/django-gcm

これらのページの指示に従って、API_KEY を適切に設定しました: http://developer.android.com/google/gcm/index.html

マニフェストには次のものがあります。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.testapp"
          android:launchMode="singleInstance"
          android:versionCode="11"
          android:versionName="1.2.0">

    <uses-sdk android:minSdkVersion="10" android:targetSdkVersion="17"/>

    <permission android:name="com.testapp.permission.C2D_MESSAGE" android:protectionLevel="signature"/>

    <!-- 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"/>

    <!-- This app has permission to register with GCM and receive message -->
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/>
    <uses-permission android:name="com.testapp.permission.C2D_MESSAGE"/>

    <application
            android:icon="@drawable/icon"
            android:label="@string/app_name"
            android:theme="@style/Theme.MyTheme">

        <receiver
                android:name="com.testapp.pager.GCMBroadcastReceiver"
                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"/>

                <category android:name="com.testapp"/>
            </intent-filter>
        </receiver>

        <service android:name=".pager.GCMIntentService" android:enabled="true"/>
        <service android:name=".services.TimeService"/>

    </application>

</manifest>

誰かが私を正しい方向に向けることができますか? 以下のように、ここでさまざまなSO投稿を試しました。

Android の Google クラウド メッセージング サンプルが機能しない

Android GCM が機能しない

4

1 に答える 1

5

GCMIntentService は、デフォルトのパッケージ名の中にある必要があります。Android は、他のパッケージ ディレクトリでインテント サービスを見つけることができません。

于 2013-08-22T01:58:59.220 に答える