Creating Google TV AVD on windows that do not distract the x86 system image

I am trying to create an AVD for Google TV on API 13 on a Windows machine. but when creating, it throws an error requesting the installation of the Intel x86 system image. but I don’t see the x86 system image in the sdk manager for API 13, where, as I can see, on other later APIs. (Already installed for other APIs)

Can someone please help me fix this and run Google TV AVD.

+4
source share
1 answer

I have found a workaround for this problem. Tested it on Ubuntu 12.10, but it should work on Windows and Mac OS.

Here are the steps:

  • download Intel X86 Atom System Image for Android 2.3.3 (API 10) using the Android SDK Manager
  • create the folder <sdk-root>/system-images/android-13/x86
  • copy everything from <sdk-root>/system-images/android-10/x86 to <sdk-root>/system-images/android-13/x86
  • edit the <sdk-root>/system-images/android-13/x86/source.properties file with any text editor and replace the following lines:

Pkg.Desc = Android SDK Platform 2.3.7 => Pkg.Desc = Android SDK Platform 3.2

Pkg.Revision = 2 => Pkg.Revision = 1

AndroidVersion.ApiLevel = 10 => AndroidVersion.ApiLevel = 13

What is it. Now, if you open the Android SDK Manager, you will see the Intel X86 Atom System Image for Android 3.2 (API 13). He will also resolve the error message when creating AVD using Google TV Addon (API 13).

I was fortunate enough to run the emulator and work with it. However, there is no guarantee that you will have the correct behavior with this emulator.

+2
source

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


All Articles