将 Google Play 服务更新到版本 13 后,您遇到以下错误:
java.lang.IllegalStateException: The meta-data tag in your app's AndroidManifest.xml does not have the right value. Expected 4030500 but found 0. You must have the following declaration within the <application> element: <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
解决此问题错误,您需要将以下内容添加到 AndroidManifest.xml 文件中的
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
此信息在 logcat 错误消息中提供,也可以在 Google Play 服务设置文档中找到。
注意:
错误消息还表明 android:value 的预期值为 4030500。请确保在清单中指定正确的版本号文件。
以上是为什么将 Google Play 服务更新到版本 13 会导致'java.lang.IllegalStateException”以及如何修复它?的详细内容。更多信息请关注PHP中文网其他相关文章!