Firebase ANR - 甚至不使用 firebase
Firebase ANR - Not even using firebase
最近更新了 GMS,引入了新的 ANR。如果您退出应用程序,然后 return,那是初始化 ANR 的时候。线程跟踪似乎指向 Firebase,但我从未开始使用 Firebase。我猜它一定是新 GMS 包的一部分?
06-11 00:34:00.143: E/ActivityManager(1487): ANR in com.myapp
06-11 00:34:00.143: E/ActivityManager(1487): PID: 19700
06-11 00:34:00.143: E/ActivityManager(1487): Reason: Broadcast of Intent { act=com.google.firebase.INSTANCE_ID_EVENT flg=0x14 cmp=com.myapp/com.google.firebase.iid.FirebaseInstanceIdInternalReceiver (has extras) }
这是我的依赖项:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:recyclerview-v7:23.4.0'
compile 'com.google.code.gson:gson:2.4'
compile 'com.mindscapehq.android:raygun4android:2.1.0'
compile 'com.squareup.okhttp:okhttp:2.5.0'
compile 'com.android.support:support-v4:23.4.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.google.android.gms:play-services-gcm:9.0.2'
compile 'com.google.android.gms:play-services:9.0.2'
compile 'com.github.chrisbanes:PhotoView:1.2.6'
compile 'com.google.android.gms:play-services-ads:9.0.2'
compile 'com.google.android.gms:play-services-auth:9.0.2'
}
我的模拟器有 Play Services 9.+
总结一下,Google Play 服务 9.6.80 中存在问题。它已在 9.6.83 中修复。可能没有人再看到这个问题了,因为 Play 已经成功地经历了 9.8.x 发布周期,几乎所有设备都应该更新。
最近更新了 GMS,引入了新的 ANR。如果您退出应用程序,然后 return,那是初始化 ANR 的时候。线程跟踪似乎指向 Firebase,但我从未开始使用 Firebase。我猜它一定是新 GMS 包的一部分?
06-11 00:34:00.143: E/ActivityManager(1487): ANR in com.myapp
06-11 00:34:00.143: E/ActivityManager(1487): PID: 19700
06-11 00:34:00.143: E/ActivityManager(1487): Reason: Broadcast of Intent { act=com.google.firebase.INSTANCE_ID_EVENT flg=0x14 cmp=com.myapp/com.google.firebase.iid.FirebaseInstanceIdInternalReceiver (has extras) }
这是我的依赖项:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:recyclerview-v7:23.4.0'
compile 'com.google.code.gson:gson:2.4'
compile 'com.mindscapehq.android:raygun4android:2.1.0'
compile 'com.squareup.okhttp:okhttp:2.5.0'
compile 'com.android.support:support-v4:23.4.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.google.android.gms:play-services-gcm:9.0.2'
compile 'com.google.android.gms:play-services:9.0.2'
compile 'com.github.chrisbanes:PhotoView:1.2.6'
compile 'com.google.android.gms:play-services-ads:9.0.2'
compile 'com.google.android.gms:play-services-auth:9.0.2'
}
我的模拟器有 Play Services 9.+
总结一下,Google Play 服务 9.6.80 中存在问题。它已在 9.6.83 中修复。可能没有人再看到这个问题了,因为 Play 已经成功地经历了 9.8.x 发布周期,几乎所有设备都应该更新。