我在这个问题上已经工作了2天。问题是每当我尝试运行我的应用程序时,我都会遇到这个例外:
引起:java.lang.IllegalStateException:您的元数据标记 应用' S
AndroidManifest.xml没有正确的值。预计5077000 但是找到了0.你必须在其中有以下声明 元素:
所以我添加了theese一行作为二元元标记
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
但是这次另一条消息说这个应用程序不会在没有谷歌播放服务的情况下运行,这些服务会丢失你的手机。但我已将Google Play服务添加为库
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.androidmapsdemo.MainActivity" >
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.MapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</RelativeLayout>
这是我的清单文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.androidmapsdemo"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="19" />
<permission
android:name="com.example.androidmapsdemo.permission.MAPS_RECEIVE"
android:protectionLevel="signature"/>
<uses-feature
android:glEsVersion="0x00020000"
android:required="true"/>
<uses-permission android:name="com.example.androidmapsdemo.permission.MAPS_RECEIVE"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="XXXXXXXXXXXXXXXXXXXXXXXX"/>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
<activity
android:name=".MainActivity"
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>
答案 0 :(得分:2)
仅仅因为您将Google Play服务库添加到您的应用中并不意味着它可以正常运行。
您的设备还需要在其上安装Google Play服务,如果您的设备没有,那么这意味着您将无法在该设备上使用该应用。
唯一拥有Google Play服务的设备是谷歌授权并可以访问Google Play商店的设备。
在执行任何操作之前,您应该检查设备是否确实安装了Google Play服务,这样才不会让用户崩溃
答案 1 :(得分:1)
在对地图进行任何操作之前,您需要检查设备上是否安装了Google Play服务。
例如,将其放入onResume()。
// Getting status
int status = GooglePlayServicesUtil.isGooglePlayServicesAvailable(getBaseContext());
// Showing status
if(status==ConnectionResult.SUCCESS)
tvStatus.setText("Google Play Services are available");
else{
tvStatus.setText("Google Play Services are not available");
int requestCode = 10;
Dialog dialog = GooglePlayServicesUtil.getErrorDialog(status, this, requestCode);
dialog.show();
}
这只是一个例子!
在网上查看有关检查设备是否安装了Google Play服务的更佳解决方案。您甚至可以提示用户下载并安装它们以便继续使用您的应用程序。