Skip to content Skip to sidebar Skip to footer

Create Avd For Android In Ubuntu

I am not able to create AVD with the following command. $ANDROID_HOME/tools/bin/avdmanager create avd --name 'test' -k 'system-images;android-25;google_apis;x86' It throws the fo

Solution 1:

This worked for me:

cd $ANDROID_HOME/tools/bin
./sdkmanager "system-images;android-25;google_apis;x86"
./sdkmanager --licenses
avdmanager create avd -n test -k "system-images;android-25;google_apis;x86"

Post a Comment for "Create Avd For Android In Ubuntu"