使用Google Maps API v2时,Android 2.2模拟器上缺少Google Play服务

时间:2013-01-31 09:21:39

标签: android google-play-services google-maps-api-2 android-maps

嘿我试图在我的模拟器上使用谷歌地图,即使我在运行应用程序时安装了Google Play服务库它说

  

如果没有手机中遗漏的Google Play服务,此应用将无法运行

在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>

</manifest>

LogCat -

D/dalvikvm(451): DexOpt: couldn't find field 
    Landroid/content/res/Configuration;.smallestScreenWidthDp
W/dalvikvm(451): VFY: unable to resolve instance field 24
D/dalvikvm(451): VFY: replacing opcode 0x52 at 0x0012
D/dalvikvm(451): VFY: dead code 0x0014-0018 in 
    Lcom/google/android/gms/common/GooglePlayServicesUtil;.b 
    (Landroid/content/res/Resources;)Z
W/GooglePlayServicesUtil(451): Google Play services is missing.
W/GooglePlayServicesUtil(451): Google Play services is missing.
W/GooglePlayServicesUtil(451): Google Play services is missing.
W/GooglePlayServicesUtil(451): Google Play services is missing.
W/GooglePlayServicesUtil(451): Google Play services is missing.
W/GooglePlayServicesUtil(451): Google Play services is missing.
W/GooglePlayServicesUtil(451): Google Play services is missing.

library screenshot

emulator screenshot

8 个答案:

答案 0 :(得分:2)

“要在使用Google Play服务SDK时测试您的应用,您必须使用Android模拟器和运行基于Android 4.2.2或更高版本的Google API平台的AVD。”

来自http://developer.android.com/google/play-services/setup.html

答案 1 :(得分:2)

要在使用Google Play服务SDK时测试您的应用,您必须使用以下任一项:

运行Android 2.3或更高版本且包含Google Play商店的兼容Android设备。 具有AVD的Android模拟器,可运行基于Android 4.2.2或更高版本的Google API平台。

答案 2 :(得分:1)

请查看链接http://developer.android.com/google/play-services/setup.html

明确提到您必须提供可以运行和调试应用的物理开发设备。

注意:Android模拟器不支持Google Play服务 - 要使用API​​进行开发,您需要提供Android手机或平板电脑等开发设备。

答案 3 :(得分:0)

截至目前,Google Maps V2不会在模拟器上显示。它们将仅在安装了Play商店应用的实时设备上运行。测试仅Google Maps V2仅在实时设备而非仿真器上的应用程序。截至目前,没有其他选择。

答案 4 :(得分:0)

Google Maps V2不适用于模拟器,因为它与Google Play服务捆绑在一起。

如果您仍然想知道如何让它在模拟器上运行,您可能希望对此blog postSO answer进行读取。正如CommonsWare所指出的,这些文章中列出的调整归结为盗版软件。如果您真的想在Android上进行开发,可能需要考虑购买设备。

答案 5 :(得分:0)

我之前遇到过这个问题。原因是你的谷歌播放是在你的模拟器上工作。尝试this将Google Play安装到您的模拟器

答案 6 :(得分:0)

您可以查看我撰写的关于如何在模拟器上运行Google Maps API V2的博文:

Emulator speed-up and Google Map API V2

这是我在其中一篇文章中在SO上找到的信息。

答案 7 :(得分:0)

启动SDK管理器并安装Google API图片(目前为2)。 然后根据它们中的任何一个创建AVD。你应该好好去:))