4

嘿,我正在尝试在我的模拟器上使用谷歌地图,即使我在运行它说的应用程序时已经安装了谷歌播放服务库

没有您手机中缺少的 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>

日志猫 -

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.

图书馆截图

模拟器截图

4

8 回答 8

2

要在使用 Google Play 服务 SDK 时测试您的应用,您必须使用:

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

于 2014-03-04T18:14:16.747 回答
2

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

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

于 2013-08-13T22:06:07.860 回答
1

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

明确提到您必须提供一个物理开发设备,您可以在该设备上运行和调试您的应用程序。

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

于 2013-03-13T12:46:55.630 回答
0

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

如果您仍然想知道如何使其在模拟器上运行,您可能想给出这篇文并回答一读。正如 CommonsWare 所指出的,这些文章中列出的调整归结为盗版软件。如果您真的考虑在 Android 上进行开发,您可能需要考虑购买设备。

于 2013-01-31T09:32:30.373 回答
0

启动 SDK 管理器并安装 Google API 映像(当前为 2 个)。然后基于其中任何一个创建一个 AVD。你应该很高兴:)

于 2014-06-04T20:07:56.773 回答
0

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

模拟器加速和 Google Map API V2

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

于 2013-03-25T14:32:26.897 回答
0

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

于 2013-01-31T09:27:33.223 回答
0

我以前遇到过这个问题。原因是您的 google play 在您的模拟器上运行。试试 这个在你的模拟器上安装 google play

于 2013-01-31T09:44:50.040 回答