4

アプリを実行すると、Google Play サービス ライブラリがインストールされているにもかかわらず、エミュレータで Google マップを使用しようとしています。

このアプリは、お使いの携帯電話にない Google Play Services なしでは動作しません

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.

ライブラリのスクリーンショット

エミュレータのスクリーンショット

4

8 に答える 8

1

リンクを確認してくださいhttp://developer.android.com/google/play-services/setup.html

アプリを実行およびデバッグできる物理的な開発デバイスを提供する必要があることが明確に述べられています。

注: Google Play サービスは、Android エミュレーターではサポートされていません。API を使用して開発するには、Android スマートフォンやタブレットなどの開発デバイスを用意する必要があります。

于 2013-03-13T12:46:55.630 に答える
0

私は以前にこの問題に直面したことがあります。その理由は、あなたのグーグルプレイがあなたのエミュレーターで動作しているからです。これを試し て、エミュレータにgoogleplayをインストールしてください

于 2013-01-31T09:44:50.040 に答える
0

SDK マネージャーを起動し、Google API イメージ (現在は 2 つ) をインストールします。次に、それらのいずれかに基づいて AVD を作成します。あなたは行く準備ができているはずです:)

于 2014-06-04T20:07:56.773 に答える
0

エミュレータで Google Maps API V2 を実行する方法について私が書いた次のブログ投稿を確認できます。

エミュレータの高速化と Google Map API V2

これは、投稿の1つでSOで見つけた情報です。

于 2013-03-25T14:32:26.897 に答える
0

現在のところGoogle Maps V2、エミュレーターには表示されません。これらは、Play ストア アプリがインストールされているリアルタイム デバイスでのみ実行されます。Google Maps V2エミュレーターではなく、リアルタイム デバイスのみでアプリケーションをテストします。今のところ他に選択肢はありません。

于 2013-01-31T09:27:33.223 に答える
0

Google マップ V2 は、Google Play Services にバンドルされているため、エミュレーターで動作することを意図していません。

エミュレーターで動作させる方法をまだ知りたい場合は、このブログ投稿を提供して、読んで回答することをお勧めします。CommonsWare が指摘したように、これらの記事に記載されている微調整は、海賊版ソフトウェアに要約されます。Android での開発を真剣に考えている場合は、デバイスの購入を検討することをお勧めします。

于 2013-01-31T09:32:30.373 に答える