簡體   English   中英

在沒有收到GCM消息的情況下獲得“成功”

[英]get “success” without receiving any message with GCM

我嘗試將服務器上的通知發送到手機上的應用程序,但收到“成功”消息,但手機卻沒有收到任何提示,我正在使用Google Cloud Messaging

public class GCMIntentService extends GcmListenerService{


private static final String TAG = "GCMIntentService";

@Override
public void onMessageReceived(String from, Bundle data) {

    String message = data.getString("message");
    Log.d(TAG, "from:" + from);
    Log.d(TAG, "message:" + message);

    sendNotification(message);
}
 private void sendNotification(String message){
 Intent intent = new Intent(this, MainActivity.class);
 intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
 PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);

 Uri defaultSound = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
 if(Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP){

 NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(this)
                .setSmallIcon(R.drawable.logo)
                .setContentTitle("New Message")
                .setContentText(message)
                .setAutoCancel(true)
                .setSound(defaultSound)
                .setContentIntent(pendingIntent);

NotificationManager notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
notificationManager.notify(0, notificationBuilder.build());

    }

}
}

AndroidManifest

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />

<permission android:name="com.example.abdul_majeed.alruthea.permission.C2D_MESSAGE"

android:protectionLevel =“ signature” />

<uses-permission android:name="com.example.abdul_majeed.alruthea.permission.C2D_MESSAGE" />

....

<receiver
        android:name="com.google.android.gms.gcm.GcmReceiver"
        android:exported="true"
        android:permission="com.google.android.c2dm.permission.SEND">      
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="com.example.abdul_majeed.alruthea" />
</intent-filter>  

</receiver>   
    <service
        android:name=".GCMIntentService"
        android:exported="false">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
</intent-filter>
</service>

================================================

問題“ ...什么都沒有收到……”可能是由於以下代碼引起的:

if(Build.VERSION.SDK_INT < Build.VERSION_CODES.LOLLIPOP){... ...

這意味着,如果您的設備低於LOLLIPOP,則您可以收到任何東西;如果您的設備高於LOLLIPOP,則您將不會收到任何東西。 請檢查您使用的手機的Android版本。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM