android-calculatorpp/calculatorpp/misc/other/remove_avds.sh
Sergey Solovyev 0fbe345b09 Rename
2012-11-24 13:56:09 +04:00

16 lines
269 B
Bash
Executable File

#!/bin/bash
declare -a skins=("WVGA854" "WQVGA400" "HVGA" "WQVGA432" "WVGA800" "QVGA")
declare -a targets=("android-16")
for target in ${targets[@]}
do
for skin in ${skins[@]}
do
$ANDROID_HOME/tools/android -s delete avd -n AVD_$skin
done
done