英文:
Strange crashes reported by Crashlytics on a Google "Mainline" device?
问题
在我的应用的几乎每个Play Store发布版本中,我都会收到关于某些资源文件丢失的奇怪崩溃报告。反编译APK文件后,可以看到资源文件确实存在。这些崩溃总是由一个用户在一个设备上引发的。
令人困惑的是,设备型号名称为“Mainline”,制造商为“Google”。在Google上搜索时,找不到型号名称为“Mainline”的设备,但有一个名为“Mainline”的项目。有人知道是什么导致了这些崩溃吗?Google正在进行某种奇怪的测试吗?
英文:
On almost every Play Store release of my app, I get weird crash reports of certain resource files being missing. Decompiling the APK shows the resources are there. The crashes are always by 1 user on 1 device.
The puzzling thing is the device model name is "Mainline" and the manufacturer is "Google". Looking around on Google, there is no device with the model name "Mainline" however there is a project named "Mainline". Does anyone know what is causing these crashes? Is Google running some weird test?
答案1
得分: 2
Google Mainline 不是一个实际设备。Mainline 是一个 Google 项目。
MTS 是基于 Mainline 的 Google 测试环境。错误可能发生在测试过程中。
在我的情况下,ERROR_MISSING_INSTANCEID_SERVICE
错误与缺少 Google Play 服务相关。这对我来说是有道理的。
英文:
Google Mainline isn't an actual device. Mainline is a Google project.
MTS is a Google test environment based on the Mainline. The error could happen in the test process.
In my case, the ERROR_MISSING_INSTANCEID_SERVICE
error was related to the lack of Google Play service. This makes sense to me.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论