Android AVD Does Not Detect Google API as Target

I installed the Google API and created a special Google API project in Eclipse. Although, when I come to the creation of a new AVD with the Google API installed, I have an option for Android 4.2 - API Level 17. How can I show the Google API to select it?

+4
source share
4 answers

Be sure to restart Eclipse after loading the Google API.

+7
source

I would double check that you downloaded the Google API, not just the Android API. They will both have the same API number. Using the SDK manager, you will see many download options. Make sure you download the Google APIs in addition to the SDK platform.

This is the behavior that you will see if you do not have a downloaded part of Google.

+1
source

Go to the Android SDK manager, then download everything you need to create a new AVD.

After the download is complete, you can create an AVD with what you just downloaded.

+1
source

Perhaps you need to check your path to the location of the SDK, this may indicate another location of the SDK where only Android 4.2-API Level 17 is installed.

You can do this by going to Window → Preferences (in your eclipse), in Preferences goto Android, in Android you will see the location of the SDK. Browse and change the location of the SDK to the location of the SDK where your Android SDK tools are installed. For example: C: \ Program Files (x86) \ Android \ android-sdk

0
source

Source: https://habr.com/ru/post/1448122/


All Articles