我试图在Android Oreo API 26上运行的android Wear模拟器上接收FCM通知。
我已经在firebase上正确注册了应用程序,firebase令牌正在日志上打印,并且通知渠道也正在创建。
我使用firebase控制台发送消息,但是没有收到消息。控制台说0发送消息,0接收。我通过通知渠道testing_channel
以相同的名称从控制台发送通知。
接受磨损需要时间吗?
清单声明:
<service
android:name=".Services.NotificationInstanceService"
android:enabled="true"
android:exported="false">
<intent-filter>
<action android:name="com.google.firebase.INSTANCE_ID_EVENT"/>
</intent-filter>
</service>
服务类:
public class NotificationInstanceService extends FirebaseInstanceIdService{
@Override
public void onTokenRefresh() {
String refreshedToken = FirebaseInstanceId.getInstance().getToken() ;
Log.i("TAG", "onTokenRefresh: " + refreshedToken);
}
}
AppController:
public class AppController extends Application{
@Override
public void onCreate() {
super.onCreate();
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
NotificationManager mNotificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
String id = "testing_channel";
CharSequence name = "Testing";
String description = "This channel is primarily for testing";
int importance = NotificationManager.IMPORTANCE_HIGH;
NotificationChannel mChannel = null;
mChannel = new NotificationChannel(id, name, importance);
mChannel.setDescription(description);
mChannel.enableLights(true);
mChannel.setLightColor(Color.RED);
mChannel.enableVibration(true);
mChannel.setVibrationPattern(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400});
mNotificationManager.createNotificationChannel(mChannel);
Log.i("TAG", "onCreate: NOTIFICATION CHANNEL CREATED" );
}
}
}
答案 0 :(得分:0)
始终建议在真实设备上测试推送通知。 如果模拟器目标使用某种版本的Google API来接收推送通知,则可以在模拟器上测试推送通知。尝试使用Google API目标编译您的Android项目。我认为测试是必要的。
答案 1 :(得分:0)
您应该使用最新的AppCompat库目前26.0.2
compile "com.android.support:appcompat-v7:26.0.+"
在Android O中,必须在Notification Builder中使用频道
下面是一个适用于我的示例代码:
// Sets an ID for the notification, so it can be updated.
int notifyID = 1; String CHANNEL_ID =“my_channel_01”; //频道的ID。
NotificationCompat notification =
new NotificationCompat.Builder(this)
.setSmallIcon(R.drawable.notification_icon)
.setContentTitle("My notification")
.setContentText("Hello World!")
.setChannelId(CHANNEL_ID).build();
NotificationManager mNotificationManager =
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
mNotificationManager.createNotificationChannel(mChannel);
}
// Issue the notification.
mNotificationManager.notify(notifyID , notification);
并使用“Google API”(任何版本)目标来接收推送通知