source:
issm/oecreview/Archive/11821-11840/ISSM-11825-11826.diff@
11991
Last change on this file since 11991 was 11991, checked in by , 13 years ago | |
---|---|
File size: 1.5 KB |
-
proj/ice/larour/issm-uci-clean/trunk-jpl/externalpackages/android-sdk/install.sh
1 1 #This installs the Android SDK (Software Development Kit) 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. 7 7 #1: install sdk, ant and sdk tools … … 47 47 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_droid51 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 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 62 60 61 63 if [[ $step == "3" ]]; then 62 64 63 65 cd $present_dir/install-sdk/tools 64 66 ./emulator -avd $default_droid 67 65 68 fi 66 69 67 70 if [[ $step == "4" ]]; then
Note:
See TracBrowser
for help on using the repository browser.