我有一个非常基本的设置来自firebase的推送通知,并且在我的手机上工作正常。在3到6秒内,我收到通知。当我尝试在平板电脑上运行时,相同的应用程序,我根本没有收到任何通知。有人可以建议一些事情。
我使用的平板电脑是:
联想TAB 2 A7-20F,在Android 4.4.2上运行
这是我的代码。
项目 build.gradle
buildscript {
...
dependencies {
...
classpath 'com.google.gms:google-services:3.0.0'
}
}
应用 build.gradle
apply plugin: 'com.android.application'
...
dependencies {
...
compile 'com.google.firebase:firebase-messaging:10.0.1'
...
}
apply plugin: 'com.google.gms.google-services'
清单文件
<service android:name=".MyFirebaseInstanceIdService">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
</intent-filter>
</service>
<service
android:name=".MyFirebaseMessagingService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"/>
</intent-filter>
</service>
的 MyFirebaseInstanceIdService
public class MyFirebaseInstanceIdService extends FirebaseInstanceIdService {
private static final String TAG = MyFirebaseInstanceIdService.class.getName();
@Override
public void onTokenRefresh() {
String refreshedToken = FirebaseInstanceId.getInstance().getToken();
Log.d(TAG, "Refreshed token: " + refreshedToken);
}
}
的 MyFirebaseMessagingService
public class MyFirebaseMessagingService extends FirebaseMessagingService {
private static final String TAG = MyFirebaseMessagingService.class.getName();
private static final String PAYLOAD = "payload";
@Override
public void onMessageReceived(RemoteMessage remoteMessage) {
Log.d(TAG, "From: " + remoteMessage.getFrom());
triggerNotification();
}
private void triggerNotification() {
final NotificationManager notificationManager = (NotificationManager) this.getSystemService(Context.NOTIFICATION_SERVICE);
final Notification notification = new NotificationCompat
.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("Content title")
.setContentText("Content text")
.build();
notificationManager.notify(1, notification);
}
}
更新 我在5-6小时后检查了我的平板电脑,我看到了所有的通知。也许是因为一些时间的设定。我仍然没有得到它,因为我没有安排任何通知。我在每个通知中都选择了“立即发送”选项。我真的很感激任何建议。
更新 我尝试连接不同的网络以防万一,因为防火墙发生了它。 Office网络安装了防火墙,我的家庭网络没有防火墙。它甚至在移动数据上运行良好。