1

実際、私は Android アプリの通知に取り組んでいます。私の 2 つの主要な情報源は、このチュートリアルと Android 開発者の Web サイトです。

私のアプリについて簡単に説明しましょう。

  • 私のアプリでは、リクエストを処理するweb services(WS) を使用していPOST HTTPます。
  • 通知のために、私はシステムを使用しGCMます。
  • 私のアプリは、上記の「POST HTTP」リクエスト システムを使用してサーバーに登録します。
  • 実際、私のサーバーはチュートリアルのものとまったく同じ仕事をします (つまり、2 つのパラメーターとデバイスの登録 IDを使用してデータベースにアカウントを登録し、GCM を使用してデバイスにメッセージを送信します)。

実際には、これらの手順はすべて機能します。

  1. 私のアプリは正常に登録IDを取得します(gcm.register(SENDER_ID);作業)
  2. アプリがサーバーに正常に登録される
  3. デバイスからメッセージを送信しようとすると、サーバーが成功メッセージを受信します

    {"multicast_id" : 6276079906208554309 , "success" : 1 , "failure" : 0 , "canonical_ids" : 0 , "results" : [{"message_id" : "0:1374826298092960%978fee92f9fd7ecd"}]}

問題:

  • デバイスで何も受信しません

私がしたこと:

アプリケーションの 2 つのバージョンを実行しようとしています。

  • 最初にチュートリアルのコードの一部を使用してアプリを作成しましたが、廃止された (およびチュートリアルで使用されている) のpackage com.google.android.gms.gcm.GoogleCloudMessaging代わりに をcom.google.android.gcm使用しましたが、メッセージを受け取ることができなかったので、2 つ目のバージョンを試してみました …< /li>
  • 今回はチュートリアル全体を受講し、サーバーの登録機能を変更して私のものを使用するようにしましたが、最初のアプリと同様に、デバイスで何も受信しません。(受付の仕組みを理解するためにこれを行いましたが、役に立ちませんでした。今ではこの方法を忘れます)

どこであなたの助けが必要ですか:

サーバーから送信されたメッセージを受信する方法について、もう少し説明が必要です。

  • 私の主な活動は、Android 開発者の Web サイトで説明されているコードを使用しています。
  • Android 開発者 Web サイトのコードを使用して、ブロードキャスト クラスを作成します。
  • 私は IntentService またはサービスを作成していません。おそらくそれは私のエラーですが、読んだところによると、非推奨の GCMBaseIntentService のように、必要ないことがわかりました

結論として:

  • このシステムを使用できるようにするために必要な情報がどこにあるのか実際にはわからないため、デバイスでメッセージを受信するために必要なものを理解するための助けをいただければ幸いです。

ありがとう。

PS: 私のコードの一部が必要な場合は、私に聞いてください。

私の編集manifest

    <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.androidhive.pushnotifications2"
    android:versionCode="1"
    android:versionName="1.0" >

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

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

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

    <uses-permission android:name="com.androidhive.pushnotifications2.permission.C2D_MESSAGE" />
    <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.VIBRATE" />

    <!-- Main activity. -->
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >

        <!-- Register Activity -->
        <activity
            android:name="com.androidhive.pushnotifications2.cop.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="com.androidhive.pushnotifications2.MainActivity"
            android:configChanges="orientation|keyboardHidden"
            android:label="@string/app_name" >
        </activity>


        <receiver
            android:name=".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.pushnotifications2" />
            </intent-filter>
        </receiver>         
    </application>

</manifest>

そして私の GcmBroadcastReceiver (チュートリアルから来た人)

WakeLocker もチュートリアルと同じです。

package com.androidhive.pushnotifications2;

import android.app.Activity;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.support.v4.app.NotificationCompat;

import com.google.android.gms.gcm.GoogleCloudMessaging;

public class GcmBroadcastReceiver extends BroadcastReceiver {
    static final String TAG = "GCMDemo";
    public static final int NOTIFICATION_ID = 1;
    private NotificationManager mNotificationManager;
    NotificationCompat.Builder builder;
    Context ctx;
    @Override
    public void onReceive(Context context, Intent intent) {
        ///
        WakeLocker.acquire(context);
        ///
        System.out.println("TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT");
        GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(context);
        ctx = context;
        String messageType = gcm.getMessageType(intent);
        if (GoogleCloudMessaging.MESSAGE_TYPE_SEND_ERROR.equals(messageType)) {
            sendNotification("Send error: " + intent.getExtras().toString());
        } else if (GoogleCloudMessaging.MESSAGE_TYPE_DELETED.equals(messageType)) {
            sendNotification("Deleted messages on server: " +
                    intent.getExtras().toString());
        } else {
            sendNotification("Received: " + intent.getExtras().toString());
        }
        WakeLocker.release();
        setResultCode(Activity.RESULT_OK);
    }

    // Put the GCM message into a notification and post it.
    private void sendNotification(String msg) {
        mNotificationManager = (NotificationManager)
                ctx.getSystemService(Context.NOTIFICATION_SERVICE);

        PendingIntent contentIntent = PendingIntent.getActivity(ctx, 0,
                new Intent(ctx, MainActivity.class), 0);

        NotificationCompat.Builder mBuilder =
                new NotificationCompat.Builder(ctx)
        .setSmallIcon(R.drawable.common_signin_btn_icon_focus_light)
        .setContentTitle("GCM Notification")
        .setStyle(new NotificationCompat.BigTextStyle()
        .bigText(msg))
        .setContentText(msg);

        mBuilder.setContentIntent(contentIntent);
        mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
    }
}
4

0 に答える 0