嘿我试图在我的模拟器上使用谷歌地图,即使我在运行应用程序时安装了谷歌播放服务库它说
“如果没有手机中遗漏的谷歌播放服务,此应用程序将无法运行”
在LogCat上我得到了关于它的警告,但不确定为什么我会得到这个。我的MainActivity.java
package com.mapsmaps;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.view.Menu;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.SupportMapFragment;
public class MainActivity extends FragmentActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
GoogleMap mapa = ((SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.map)).getMap();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_main, menu);
return true;
}
}
activity_main.xml中
<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"
tools:context=".MainActivity" >
<fragment
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment" />
</RelativeLayout>
的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mapsmaps"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="8" />
<permission
android:name="com.mapsmaps.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-permission android:name="com.mapsmaps.permission.MAPS_RECEIVE" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />F
<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" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme"
>
<activity
android:name="com.mapsmaps.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>
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyBdbj4iXi0SijKjJDrJw5RigtSpQcaID7Q" />
</application>
LogCat
01-31 11:10:41.404: D/dalvikvm(451): DexOpt: couldn't find field Landroid/content/res/Configuration;.smallestScreenWidthDp
01-31 11:10:41.404:W / dalvikvm(451):VFY:无法解析实例字段24 01-31 11:10:41.404:D / dalvikvm(451):VFY:在0x0012处替换操作码0x52 01-31 11:10:41.404:D / dalvikvm(451):VFY:Lcom中的死代码0x0014-0018 / google / android / gms / common / GooglePlayServicesUtil; .b(Landroid / content / res / Resources;)Z 01-31 11:10:41.443:W / GooglePlayServicesUtil(451):Google Play服务丢失。 01-31 11:10:41.454:W / GooglePlayServicesUtil(451):Google Play服务丢失。 01-31 11:10:41.464:W / GooglePlayServicesUtil(451):Google Play服务丢失。 01-31 11:10:41.464:W / GooglePlayServicesUtil(451):Google Play服务丢失。 01-31 11:10:41.475:W / GooglePlayServicesUtil(451):Google Play服务丢失。 01-31 11:10:41.494:W / GooglePlayServicesUtil(451):Google Play服务丢失。 01-31 11:10:41.504:W / GooglePlayServicesUtil(451):Google Play服务丢失。
答案 0 :(得分:3)
如果您想使用自己的应用测试自己的Google Play服务实施,那么您的模拟器应支持Google API。
您可以通过创建新的模拟器虚拟设备并将所需的Google API级别图像添加为目标来轻松完成此操作,例如:Google API - API级别18
答案 1 :(得分:2)
如果您想使用自己的应用测试自己的Google Play服务实施,那么您的模拟器应支持Google API。
您可以通过创建新的模拟器虚拟设备并将所需的Google API级别图像添加为目标来轻松完成此操作,例如: Google API - API级别18
另请参阅此问题以获取更多信息:Google API Level 18 emulator "This app won't run unless you update Google Play services"