e7d15fe870
BUG=skia: GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2140663002 DOCS_PREVIEW= https://skia.org/?cl=2140663002 Review-Url: https://codereview.chromium.org/2140663002
17 lines
555 B
Bash
Executable File
17 lines
555 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# android_launch_app: Launches the skia Viewer app on the device.
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
source $SCRIPT_DIR/android_setup.sh
|
|
source $SCRIPT_DIR/utils/setup_adb.sh
|
|
|
|
# TODO: check to ensure that the app exists on the device and prompt to install
|
|
|
|
if [[ -n $RESOURCE_PATH ]]; then
|
|
adb_push_if_needed "${SKIA_SRC_DIR}/resources" $RESOURCE_PATH
|
|
fi
|
|
|
|
activity="org.skia.viewer/org.skia.viewer.ViewerActivity"
|
|
$ADB ${DEVICE_SERIAL} shell "am start -S -n ${activity} --es cmdLineFlags \"${APP_ARGS[*]:1}\""
|