gpt4 book ai didi

google-cloud-messaging - 在某些设备上下类后收到 Gcm 通知

转载 作者:行者123 更新时间:2023-12-03 23:50:51 26 4
gpt4 key购买 nike

我正在尝试使用 gcm 通知。我的服务器代码工作正常,我得到了成功作为确认。

问题是通知正在正确发送:

1) 在大多数设备中,通知是即时收到的。
在 google nexus、sony 手机上测试。

2) 其他设备也在几个小时后收到通知。是的,小时 .在 Karbonn、Micromax 一些手机上进行了测试。

笔记:

所有设备都连接到同一个 wifi,因此网络连接不是问题。在服务器端使用 php;
关于这个主题有几个 Unresolved 问题。我在此列出其中的一些:

gcm notification is not working on some devices like micromax

One device doesn't receive push notifications (GCM)

Push notifications delay with GCM

其他有类似问题的人也附上您的问题。

整改失败:

在经历了几个问题后,我还对代码进行了更改,开发人员在这些问题中找到了他们的解决方案,例如
onHandleIntent() 中删除这行代码

GcmBroadcastReceiver.completeWakefulIntent(intent);

或更改 delay_while_ideal值为 true/false在服务器代码中。

或者单独提到接收者和注册意图过滤器
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="com.nothing.gcmclient" />
</intent-filter>
<intent-filter>
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="com.nothing.gcmclient" />
</intent-filter>

代码:
Android.manifest
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.nothing.gcmclient"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="22" />

<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.nothing.gcmclient.permission.C2D_MESSAGE"
android:protectionLevel="signature" />

<uses-permission android:name="com.nothing.gcmclient.permission.C2D_MESSAGE" />
<uses-permission android:name="com.nothing.gcmclient.c2dm.permission.RECEIVE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.VIBRATE" />

<uses-permission android:name="ANDROID.PERMISSION.WRITE_EXTERNAL_STORAGE"></uses-permission>
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".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>
<activity
android:name=".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>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="com.nothing.gcmclient" />
</intent-filter>
<intent-filter>
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="com.nothing.gcmclient" />
</intent-filter>
</receiver>

<service android:name=".GCMNotificationIntentService"></service>

<activity
android:name=".ChatActivity"
android:label="@string/title_activity_chat" >
</activity>
<activity
android:name=".RegisterScreen"
android:label="@string/title_activity_register_screen" >
</activity>
<activity
android:name=".RegisterChatButtonActivity"
android:label="@string/title_activity_register_chat_button" >
</activity>
<activity
android:name=".ChatHistory"
android:label="@string/title_activity_chat_history" >
</activity>
<activity
android:name=".MessageScreen"
android:label="@string/title_activity_message_screen" >
</activity>
</application>

</manifest>

代码:GCMNotificationIntentService.java
public class GCMNotificationIntentService extends IntentService {

public static final int NOTIFICATION_ID = 1;
private NotificationManager mNotificationManager;
NotificationCompat.Builder builder;

public GCMNotificationIntentService() {
super("GcmIntentService");
}

public static final String TAG = "GCMNotificationIntentService";

@Override
protected void onHandleIntent(Intent intent) {
Bundle extras = intent.getExtras();
GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(this);

String messageType = gcm.getMessageType(intent);

if (!extras.isEmpty()) {
if (GoogleCloudMessaging.MESSAGE_TYPE_SEND_ERROR
.equals(messageType)) {
sendNotification("Send error: " + extras.toString());
} else if (GoogleCloudMessaging.MESSAGE_TYPE_DELETED
.equals(messageType)) {
sendNotification("Deleted messages on server: "
+ extras.toString());
} else if (GoogleCloudMessaging.MESSAGE_TYPE_MESSAGE
.equals(messageType)) {
String sender=extras.get(Config.SENDER).toString().toLowerCase();
String message=extras.get(Config.MESSAGE_KEY).toString();

if(!RegisterActivity.appVisible==true)
{
sendNotification("New message Received from "+ extras.get(Config.SENDER));
}
}
}
//GcmBroadcastReceiver.completeWakefulIntent(intent);
}

private void sendNotification(String msg) {
Log.d(TAG, "Preparing to send notification...: " + msg);
mNotificationManager = (NotificationManager) this
.getSystemService(Context.NOTIFICATION_SERVICE);

PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
new Intent(this, ChatHistory.class), 0);

NotificationCompat.Builder mBuilder = new NotificationCompat.Builder(
this).setSmallIcon(R.drawable.gcm_cloud)
.setContentTitle("New Notification")
.setStyle(new NotificationCompat.BigTextStyle().bigText(msg))
.setContentText(msg);

mBuilder.setContentIntent(contentIntent);
mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
Log.d(TAG, "Notification sent successfully.");
}
}

请专家调查问题并提出适当的原因和解决方案。如果我的应用程序仅适用于某些手机,它将毫无用处。如果您在我们的应用程序中需要更多文件,请告知。

PS-请阅读整个问题,然后发表您的评论或答案,或在必要时标记重复。

最佳答案

  • GCM 通过 Google Play 服务工作
  • 设备通过 连接到 Google Play 服务TCP 端口 5228
  • 如果端口 5228 被阻止,设备应使用端口 443 作为后备,但显然它们有时只是不使用后备(发生在我的多个设备上)
  • 设备发送 发送到 Google Play 服务的心跳包 在手机上每 28 分钟一次,在 wifi 上每 15 分钟一次
  • 可以查看连接状态、心跳间隔、连接地址和端口等。调用*#*#426#*#*在设备上

  • 如何解决设备在 wifi 上无法连接到 Google Play 服务或频繁断开连接时的常见问题 :
  • 打开端口 5228
  • 配置你的路由器,这样它们就不会在等待至少 15 分钟之前终止非事件的 tcp 连接

  • this post on Google Product Forums了解更多信息。

    关于google-cloud-messaging - 在某些设备上下类后收到 Gcm 通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31655798/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com