Reputation: 1
When I try to run this command :
./avdmanager create avd -n Android_TV -d 0 -k "system-images;android-29;android-tv;x86"
getting an error :
Error: Package path is not valid. Valid system image paths are:ository...
Also, I tried running this command: ./sdkmanager list
Giving a warning : Warning: Failed to find package list.
Please help me with this as I am trying to create an Android Tv emulator on my device farm.
Upvotes: 0
Views: 1604
Reputation: 11
Hi first you need to download the image with sdkmanager
./sdkmanager "system-images;android-29;android-tv;x86"
It will download the image in "system-images" folder then you could run your command
Upvotes: 1