Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Tv Emulator AVD System Image

Hi i am trying to set up google tv emulator in my windows machine.I am able to install googleTv Adon avilable in api level 13

But when i am trying to create AVD it throws a errormessage Please install intelx86. But X86 System image is not avilable in api 13. Can anyone help me please.

like image 873
user2406943 Avatar asked Jun 03 '13 20:06

user2406943


1 Answers

The solution is to create avd with a command line.

android create avd -n GoogleTV -t 11

Where 11 is the api id. In your system this will be different then mine so first issue a comamnd

android list target

In my case it was

... id: 11 or "Google Inc.:Google TV Addon:12" Name: Google TV Addon ....

For convenience on linux you can use

android list target | grep TV -B 2
like image 115
marekdef Avatar answered Nov 14 '22 23:11

marekdef