Changeset 11826


Ignore:
Timestamp:
03/30/12 13:05:48 (13 years ago)
Author:
glperez
Message:

Modifications to Android-Sdk install script.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/externalpackages/android-sdk/install.sh

    r11718 r11826  
    22#which is needed for the compilation of the Java project.
    33
    4 step=3;
     4step=2;
    55
    66#Different steps here.
     
    4848        #Here we delete the Android-4.0.3 device if it already exists.
    4949        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
    5156
    5257        #Android will prompt the user to specify hardware emulation options. For now, default
    5358        #default settings will suffice. Press 'enter' to take default settings or enter 'no'.
    5459
    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
    5861fi
    59 
    6062
    6163if [[ $step == "3" ]]; then
     
    6365        cd $present_dir/install-sdk/tools
    6466        ./emulator -avd $default_droid
     67
    6568fi
    6669
Note: See TracChangeset for help on using the changeset viewer.