Changeset 11826
- Timestamp:
- 03/30/12 13:05:48 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/externalpackages/android-sdk/install.sh
r11718 r11826 2 2 #which is needed for the compilation of the Java project. 3 3 4 step= 3;4 step=2; 5 5 6 6 #Different steps here. … … 48 48 #Here we delete the Android-4.0.3 device if it already exists. 49 49 cd $present_dir/install-sdk/tools 50 ./android delete avd -n $default_droid 50 51 if [ -e $ISSM_TIER/externalpackages/android-emulators/$default_droid ] 52 then 53 echo "Deleting previously created device: $default_droid" 54 ./android delete avd -n $default_droid 55 fi 51 56 52 57 #Android will prompt the user to specify hardware emulation options. For now, default 53 58 #default settings will suffice. Press 'enter' to take default settings or enter 'no'. 54 59 55 ./android create avd -f -n $default_droid -t 1 56 ./android move avd -n Android-4.0.3 -p $ISSM_TIER/externalpackages/android-emulators/$default_droid 57 60 ./android create avd -f -n $default_droid -t 1 -p $ISSM_TIER/externalpackages/android-emulators/$default_droid --abi armeabi-v7a 58 61 fi 59 60 62 61 63 if [[ $step == "3" ]]; then … … 63 65 cd $present_dir/install-sdk/tools 64 66 ./emulator -avd $default_droid 67 65 68 fi 66 69
Note:
See TracChangeset
for help on using the changeset viewer.