OLD | NEW |
1 #!/bin/bash | 1 #!/bin/bash |
2 # | 2 # |
3 # android_launch_app: Launches the skia sampleApp on the device. | 3 # android_launch_app: Launches the skia sampleApp on the device. |
4 | 4 |
5 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | 5 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
6 source $SCRIPT_DIR/android_setup.sh | 6 source $SCRIPT_DIR/android_setup.sh |
7 source $SCRIPT_DIR/utils/setup_adb.sh | 7 source $SCRIPT_DIR/utils/setup_adb.sh |
8 | 8 |
9 # TODO: check to ensure that the app exists on the device and prompt to install | 9 # TODO: check to ensure that the app exists on the device and prompt to install |
10 | 10 |
11 if [[ -n $RESOURCE_PATH ]]; then | 11 if [[ -n $RESOURCE_PATH ]]; then |
12 adb_push_if_needed "${SKIA_SRC_DIR}/resources" $RESOURCE_PATH | 12 adb_push_if_needed "${SKIA_SRC_DIR}/resources" $RESOURCE_PATH |
13 fi | 13 fi |
14 | 14 |
15 $ADB ${DEVICE_SERIAL} shell am start -S -n "com.skia/.SkiaSampleActivity" --es "
cmdLineFlags" "${APP_ARGS[*]}" | 15 app=${APP_ARGS[0]} |
| 16 if [[ ${app} == '-'* ]]; then |
| 17 app="SampleApp" |
| 18 APP_ARGS=( "SampleApp" ${APP_ARGS[*]} ) |
| 19 fi |
16 | 20 |
| 21 if [[ ${app} == 'SampleApp' ]]; then |
| 22 $ADB ${DEVICE_SERIAL} shell am start -S -n "com.skia/.SkiaSampleActivity" --
es "cmdLineFlags" "${APP_ARGS[*]:1}" |
| 23 elif [[ ${app} == "VisualBench" ]] ; then |
| 24 $ADB ${DEVICE_SERIAL} shell am start -S -n "com.skia/.VisualBenchActivity" -
-es "cmdLineFlags" "${APP_ARGS[*]:1}" |
| 25 else |
| 26 echo "ERROR: supports either 'SampleApp' or 'VisualBench' as valid apps" |
| 27 fi |
| 28 |
OLD | NEW |