gpt4 book ai didi

android - AndroidManifest 中的 Google Play Services v13 错误元数据

转载 作者:IT老高 更新时间:2023-10-28 21:45:44 24 4
gpt4 key购买 nike

我的应用正在使用 Google Play 服务获取位置信息。它也使用谷歌地图。直到今天它运行良好,但在 Eclipse 更新和 Google Play Services v13 安装之后,它不再工作了。今天我进行了几次更新。- Android SDK 工具更新至 22.3- Android SDK 平台工具更新至 19- Android SDK 构建工具更新到 19- 谷歌播放服务更新到 13我也更新了 ADT

当我启动应用程序时,我收到以下错误消息:

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" />

我曾多次使用 Google Play 服务,而且这个应用程序到目前为止运行良好。我从来没有在 list 中包含任何元数据。

我已尝试解决问题,包括我的应用 list 中的元数据标记,但它不起作用。目前我的应用 list 看起来像这样(这与我的应用在运行时包含的 list 相同)。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.myapp.app"
android:versionCode="2"
android:versionName="1.0.1" >

<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<permission
android:name="com.myapp.app.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />

<uses-permission android:name="com.myapp.app.permission.MAPS_RECEIVE" />

<supports-screens android:requiresSmallestWidthDp="320" />
<supports-screens android:compatibleWidthLimitDp="394" />


<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="18" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/CustomizedTheme" >

<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="thecode" />

<activity
android:name="com.myapp.app.ActivityMain"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

我想知道这个问题是否是由于 google-play-services list 造成的?

这是我找到的 list :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.android.gms"
android:versionCode="4030530"
android:versionName="4.0.30 (889083-30)" >

<uses-sdk android:minSdkVersion="8"/>

</manifest>

要使用 Google Play 服务,我已经按照 Google 提供的说明进行操作,和过去一样,直到现在我还没有发现任何问题。

最佳答案

Google Maps getting started guide说:

将 Google Play 服务版本添加到您应用的 list 中

Edit your application's AndroidManifest.xml file, and add the following declaration within the element. This embeds the version of Google Play services that the app was compiled with.

<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />

关于android - AndroidManifest 中的 Google Play Services v13 错误元数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19735507/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com