1#!/bin/bash 2# 3# android_launch_app: Launches the skia sampleApp on the device. 4 5SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 6source $SCRIPT_DIR/android_setup.sh 7source $SCRIPT_DIR/utils/setup_adb.sh 8 9# TODO: check to ensure that the app exists on the device and prompt to install 10 11if [[ -n $RESOURCE_PATH ]]; then 12 adb_push_if_needed "${SKIA_SRC_DIR}/resources" $RESOURCE_PATH 13fi 14 15$ADB ${DEVICE_SERIAL} shell am start -S -n "com.skia/.SkiaSampleActivity" --es "cmdLineFlags" "${APP_ARGS[*]}" 16 17