No compatible AVDs with target Google APIs,

I am developing an Android application and trying to run it on AVD. The API is installed on Android 2.3.3. I have emulator 2.3.3 (sdk version 10) and the android manifest reads:

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

I changed the target to 10 to match the api included in the project. How to fix this error:

 [2013-01-30 23:18:47 - kiloboltandroidframework] Failed to find an AVD compatible with target 'Google APIs'. [2013-01-30 23:18:48 - kiloboltandroidframework] Still no compatible AVDs with target 'Google APIs': Aborting launch. 
+4
source share
5 answers

When creating a new Android virtual device, select Target as Google API Level 10 API

+9
source

Android Api level 10 differs from the level of Google Api 10. Android only comes with the Android file android.jar white Google Api comes with android.jar as well as maps.jar. Your project may require Google Api and you have not installed it. To install Google Api, go to the SDK Manager and check. If they are already installed, create an AVD with the Google Api Level 10 platform.

+2
source

Could not find AVD compatible with target Google APIs.

=> It means that you did not create AVD with the Google API, but yes, you have implemented functionality that uses the Google API, for example, Google Map.

Find the snap-in, how to install the Google API, shortly after installation, create an AVD with the same Google API.

enter image description here

+1
source

You need to create an AVD that uses the Google API Add-in. See here .

0
source

Start another virtual machine from VDM in which the Target api is β€œGoogle APi” and Platform 2.3.3. if you do not have google api in your VDM (Virtual Device Manager) than download it. Start it once and start your project.

0
source

All Articles