我尝试使用FCM消息向Android模拟器设备发送通知,但我没有收到任何通知。 谷歌应用程序ID与google-services.json中的相同
这是我从控制台获得的:
D / FA:已连接到远程服务
V / FA:处理排队的服务任务:1
V / FA:不活动,断开与AppMeasurementService的连接
我的build.gradle(模块:app):
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.example.cris.firebasenotificationexam"
minSdkVersion 22
targetSdkVersion 23
...
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
apply plugin: 'com.google.gms.google-services'
compile 'com.google.firebase:firebase-messaging:9.0.2'
}
任何人都知道如何解决这个问题?
答案 0 :(得分:0)
日志消息:不活动,断开与AppMeasurementService的连接,这是正常的,并不表示是否有问题。
编辑build.gradle
文件的依赖项块:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.google.firebase:firebase-messaging:9.0.2'
}
// Moved the following statement. Was in the dependencies block
apply plugin: 'com.google.gms.google-services'
中的更多详细信息
另外,请考虑使用最新发布的库版本:9.8.0用于firebase-messaging,25.0.1用于appcompat-v7。