Friday, July 19, 2013

[android help] I have followed google map tutorial but keep on getting this answer:Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY


I have followed google map tutorial but keep on getting this answer:Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY



Ive been following a tutorial regarding google maps, a pretty basic tutorial here http://umut.tekguc.info/en/content/google-android-map-v2-step-step ,I am unable to run the application on the emulator, iv donwloaded and installed the vend.apk and the gms.apk files as well as also have downloaded the google play services from the SDK manager. After doing all this when i finally run my application on the emulator the following error occurrs : "Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY".


I also have tried and change the AVD but it does'nt work. I think i am unable to configure the APIs properly with the AVD. Any help would be appreciated, thank you all. Here is my code: MainActivity.java:



package com.example.googlemapsandroidv2;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;

import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapFragment;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.Marker;
import com.google.android.gms.maps.model.MarkerOptions;

public class MainActivity extends Activity {

private GoogleMap mMap;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mMap=((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
mMap.setMapType(GoogleMap.MAP_TYPE_SATELLITE);
final LatLng CIU=new LatLng(35.21843892856462, 33.41662287712097);
Marker ciu=mMap.addMarker(new MarkerOptions().position(CIU).title("My Office"));
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}

}


Here is the Manifest:




package="com.example.googlemapsandroidv2"
android:versionCode="1"
android:versionName="1.0" >

android:minSdkVersion="14"
android:targetSdkVersion="17" />

android:name="com.example.googlemapsandroidv2.permission.MAPS_RECEIVE"
android:protectionLevel="signature">


android:name="com.example.googlemapsandroidv2.permission.MAPS_RECEIVE"/>
android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>
android:name="android.permission.INTERNET"/>
android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
android:name="android.permission.ACCESS_COARSE_LOCATION"/>
android:name="android.permission.ACCESS_FINE_LOCATION"/>
android:glEsVersion="0x00020000"
android:required="true"/>


android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyCLhVm6faqwv8gaj1aWZ_Xvlsf4sMal42U"/>
android:name="com.google.android.maps" />
android:name="com.example.googlemapsandroidv2.MainActivity"
android:label="@string/app_name" >











Here is the detail regarding the AVD: Targert:Android 4.0(API level 14) CPU/ABI:ARM(armeabi-v7a)


Here is the console output:


[2013-07-18 14:27:31 - GoogleMapsAndroidV2] Android Launch! [2013-07-18 14:27:31 - GoogleMapsAndroidV2] adb is running normally. [2013-07-18 14:27:31 - GoogleMapsAndroidV2] Performing com.example.googlemapsandroidv2.MainActivity activity launch [2013-07-18 14:27:31 - GoogleMapsAndroidV2] Automatic Target Mode: launching new emulator with compatible AVD 'MapTestAvd' [2013-07-18 14:27:31 - GoogleMapsAndroidV2] Launching a new emulator with Virtual Device 'MapTestAvd' [2013-07-18 14:27:33 - GoogleMapsAndroidV2] New emulator found: emulator-5554 [2013-07-18 14:27:33 - GoogleMapsAndroidV2] Waiting for HOME ('android.process.acore') to be launched... [2013-07-18 14:28:29 - GoogleMapsAndroidV2] HOME is up on device 'emulator-5554' [2013-07-18 14:28:29 - GoogleMapsAndroidV2] Uploading GoogleMapsAndroidV2.apk onto device 'emulator-5554' [2013-07-18 14:28:40 - GoogleMapsAndroidV2] Installing GoogleMapsAndroidV2.apk... [2013-07-18 14:29:26 - GoogleMapsAndroidV2] Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY [2013-07-18 14:29:26 - GoogleMapsAndroidV2] Please check logcat output for more details. [2013-07-18 14:29:26 - GoogleMapsAndroidV2] Launch canceled! [2013-07-18 14:34:40 - SDK Manager] Warning: Ignoring add-on 'addon-google_apis-google-14': File not found: manifest.ini [2013-07-18 14:37:09 - SDK Manager] Warning: Ignoring add-on 'addon-google_apis-google-14': File not found: manifest.ini [2013-07-18 14:54:40 - SDK Manager] Warning: Ignoring add-on 'addon-google_apis-google-14': File not found: manifest.ini


THANK YOU ALL FOR YOUR TIME. I really appreciate all sorts of help.



Read more

stackoverflow.comm



No comments:

Post a Comment

Google Voice on T-Mobile? [General]

Google Voice on T-Mobile? So I recently switched from a GNex on Verizon to a Moto X DE on T-Mobile. I had always used Google Voice for my v...