1

As many I get the following error: java.lang.noclassdeffounderror: com.google.android.gms.R$styleable when trying to implement Maps for Android V2.

Somehow I must be missing what I exactly am doing wrong, since it's not working. What I tried first is to copy the google-play-services.lib into the lib folder, but I saw somewhere I shouldn't do this.

Then I tried to import addon-google_apis-google-8 as a project, but the project gives the error The import com.google cannot be resolved.

I'm following the Vogella Tutorial:

Activity:

SupportMapFragment fm = (SupportMapFragment)   getSupportFragmentManager().findFragmentById(R.id.map);
        map = fm.getMap();

         //map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
                Marker hamburg = map.addMarker(new MarkerOptions().position(HAMBURG)
                    .title("Hamburg"));
                Marker kiel = map.addMarker(new MarkerOptions()
                    .position(KIEL)
                    .title("Kiel")
                    .snippet("Kiel is cool")
                    .icon(BitmapDescriptorFactory
                        .fromResource(R.drawable.btn_logo)));

                // Move the camera instantly to hamburg with a zoom of 15.
                map.moveCamera(CameraUpdateFactory.newLatLngZoom(HAMBURG, 15));

                // Zoom in, animating the camera.
                map.animateCamera(CameraUpdateFactory.zoomTo(10), 2000, null);

Manifest:

 <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

    <permission
        android:name="com.testmap.test.permission.MAPS_RECEIVE"
        android:protectionLevel="signature" />

    <uses-permission android:name="com.testmap.test.permission.MAPS_RECEIVE" />
    <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_FINE_LOCATION"/>
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>  
    <uses-permission android:name="android.permission.WRITE_SETTINGS" />
   uses-permission android:name="android.permission.INTERNET" />
   <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
     <uses-feature
        android:glEsVersion="0x00020000"
        android:required="true" />

              <meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value="a_real_api_key" />
    </application>

I retrieved a_real_api_key by entering the SHA1 retrieved by installing the keytool plugin.. http://keytool.sourceforge.net/update fingerprint;com.testmap.test in the google console.

And xml:

 <fragment
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.google.android.gms.maps.SupportMapFragment" />

I have the feeling I need to import the google-play-services library, can somebody tell me step by step how to do this in Eclipse, I've followed many answers, but I seem to do something wrong every time.

4

1 に答える 1

11

はい、あなたは正しいです。プロジェクトにライブラリとしてインポートgoogle_play_services_libして追加する必要があります。

このためには、次のことを行う必要があります。

  1. Google Play ServicesAndroid SDK マネージャーから をダウンロードします。

  2. これを「既存の Android Code Base のインポート」でプロジェクトとして追加します。に移動し ~/<android_sdk>/extras/google/google_play_services/libprojectて、これをワークスペースに追加します。

  3. このプロジェクトがワークスペースに追加されたら、それを右クリックし、[プロパティ] に移動してから [Android] タブに移動し、ライブラリとしてマークします。

  4. アプリケーションに移動し、右クリックして [プロパティ] に移動し、[Android] タブに移動し、[ライブラリ] ペインで [ライブラリの追加] をクリックします。これにより、google_play_services プロジェクトが表示されます。これをプロジェクトへの参照として追加します。

  5. もう 1 つの要件は、プロジェクトを右クリックして [Android Tools] オプションと [Add Support Library...] に移動することです。

これにより、マップが実行されます。

注: Google Play サービスは、JAR としてではなく、「既存の Android コード ベース」プロジェクトとして追加する必要があります。

于 2013-08-20T00:52:22.590 に答える