android-calculatorpp/calculatorpp/misc/other/remove_avds.sh

16 lines
269 B
Bash
Raw Normal View History

2012-11-22 16:19:14 -05:00
#!/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