OLD | NEW |
1 #!/bin/bash | 1 #!/bin/bash |
2 # | 2 # |
3 # android_install_skia: installs the skia apk on the device. | 3 # android_install_app: installs the skia sampleApp on the device. |
4 | 4 |
5 function print_usage { | 5 function print_usage { |
6 echo "USAGE: android_install_skia [options]" | 6 echo "USAGE: android_install_app [options]" |
7 echo " Options: -f Forces the package to be installed by removing any
" | 7 echo " Options: -f Forces the package to be installed by removing any
" |
8 echo " previously installed packages" | 8 echo " previously installed packages" |
9 echo " -h Prints this help message" | 9 echo " -h Prints this help message" |
10 echo " --release Install the release build of Skia" | 10 echo " --release Install the release build of Skia" |
11 echo " -s [device_s/n] Serial number of the device to be used" | 11 echo " -s [device_s/n] Serial number of the device to be used" |
12 } | 12 } |
13 | 13 |
14 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | 14 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
15 | 15 |
16 source $SCRIPT_DIR/android_setup.sh | 16 source $SCRIPT_DIR/android_setup.sh |
(...skipping 23 matching lines...) Expand all Loading... |
40 done | 40 done |
41 | 41 |
42 if [[ "$forceRemoval" == "true" ]]; | 42 if [[ "$forceRemoval" == "true" ]]; |
43 then | 43 then |
44 echo "Forcing removal of previously installed packages" | 44 echo "Forcing removal of previously installed packages" |
45 $ADB ${DEVICE_SERIAL} uninstall com.skia > /dev/null | 45 $ADB ${DEVICE_SERIAL} uninstall com.skia > /dev/null |
46 fi | 46 fi |
47 | 47 |
48 echo "Installing Skia App from ${SKIA_OUT}/${BUILDTYPE}" | 48 echo "Installing Skia App from ${SKIA_OUT}/${BUILDTYPE}" |
49 $ADB ${DEVICE_SERIAL} install ${installOptions} ${SKIA_OUT}/${BUILDTYPE}/android
/bin/SkiaAndroid.apk | 49 $ADB ${DEVICE_SERIAL} install ${installOptions} ${SKIA_OUT}/${BUILDTYPE}/android
/bin/SkiaAndroid.apk |
OLD | NEW |