Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fail to create Android virtual Device, "No system image installed for this Target"

Tags:

wear-os

Unable to create Android Virtual Device i follwed this link.

I installed all ARM images for each Android more than 4.0.

I installed intel & MIPs as well.

But, still my AVD Manager is saying "NO System images installed for this target".

why, so?

like image 767
user Avatar asked Mar 20 '14 18:03

user


People also ask

Why is my AVD not working?

Android Virtual Devices fail to launch on ChromeOS On ChromeOS, Android Virtual Devices (AVDs) might fail to launch because the libnss3 dependency is missing. To launch the AVDs successfully, run sudo apt install libnss3 to manually install the libnss3 library.


2 Answers

In order to create an Android Wear emulator you need to follow the instructions below:

  1. If your version of Android SDK Tools is lower than 22.6, you must update

  2. Under Android 4.4.2, select Android Wear ARM EABI v7a System Image and install it.

  3. Under Extras, ensure that you have the latest version of the Android Support Library. If an update is available, select Android Support Library. If you're using Android Studio, also select Android Support Repository.

Below is the snapshot of what it should look like:

Screenshot1

Then you must check the following in order to create a Wearable AVD:

  1. For the Device, select Android Wear Square or Android Wear Round.

  2. For the Target, select Android 4.4.2 - API Level 19 (or higher, otherwise corresponding system image will not show up.).

  3. For the CPU/ABI, select Android Wear ARM (armeabi-v7a).

  4. For the Skin, select AndroidWearSquare or AndroidWearRound.

  5. Leave all other options set to their defaults and click OK.

Screenshot2

Then you are good to go. For more information you can always refer to the developer site.

like image 186
Spring Breaker Avatar answered Sep 20 '22 22:09

Spring Breaker


As a workaround, go to sdk installation directory and perform the following steps:

  • Navigate to system-images/android-19/default
  • Move everything in there to system-images/android-19/

The directory structure should look like this: enter image description here

And it should work!

like image 35
silvermouse Avatar answered Sep 19 '22 22:09

silvermouse