X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=lib%2Fcom%2Fgoogle%2Fandroid%2Fgcm%2FGCMBroadcastReceiver.java;fp=lib%2Fcom%2Fgoogle%2Fandroid%2Fgcm%2FGCMBroadcastReceiver.java;h=0000000000000000000000000000000000000000;hb=ca40a5cc0f95f37d2ac3008d5fa3f0adaf47d736;hp=bbe7b6665d34c44552ca17027e5564c812a9011b;hpb=72de2947b5234e3b8495065e358530d9fddf3fb8;p=fonbot.git diff --git a/lib/com/google/android/gcm/GCMBroadcastReceiver.java b/lib/com/google/android/gcm/GCMBroadcastReceiver.java deleted file mode 100644 index bbe7b66..0000000 --- a/lib/com/google/android/gcm/GCMBroadcastReceiver.java +++ /dev/null @@ -1,75 +0,0 @@ -/* - * Copyright 2012 Google Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package com.google.android.gcm; - -import static com.google.android.gcm.GCMConstants.DEFAULT_INTENT_SERVICE_CLASS_NAME; - -import android.app.Activity; -import android.content.BroadcastReceiver; -import android.content.Context; -import android.content.Intent; -import android.util.Log; - -/** - * {@link BroadcastReceiver} that receives GCM messages and delivers them to - * an application-specific {@link GCMBaseIntentService} subclass. - *

- * By default, the {@link GCMBaseIntentService} class belongs to the application - * main package and is named - * {@link GCMConstants#DEFAULT_INTENT_SERVICE_CLASS_NAME}. To use a new class, - * the {@link #getGCMIntentServiceClassName(Context)} must be overridden. - */ -public final class GCMBroadcastReceiver extends BroadcastReceiver { - - private static final String TAG = "GCMBroadcastReceiver"; - private static boolean mReceiverSet = false; - - @Override - public final void onReceive(Context context, Intent intent) { - Log.v(TAG, "onReceive: " + intent.getAction()); - // do a one-time check if app is using a custom GCMBroadcastReceiver - if (!mReceiverSet) { - mReceiverSet = true; - String myClass = getClass().getName(); - if (!myClass.equals(GCMBroadcastReceiver.class.getName())) { - GCMRegistrar.setRetryReceiverClassName(myClass); - } - } - String className = getGCMIntentServiceClassName(context); - Log.v(TAG, "GCM IntentService class: " + className); - // Delegates to the application-specific intent service. - GCMBaseIntentService.runIntentInService(context, intent, className); - setResult(Activity.RESULT_OK, null /* data */, null /* extra */); - } - - /** - * Gets the class name of the intent service that will handle GCM messages. - */ - protected static String getGCMIntentServiceClassName(final Context context) { - return getDefaultIntentServiceClassName(context); - } - - /** - * Gets the default class name of the intent service that will handle GCM - * messages. - */ - private static final String getDefaultIntentServiceClassName(final Context context) { - String className = context.getPackageName() + - DEFAULT_INTENT_SERVICE_CLASS_NAME; - return className; - } -}