1#!/bin/bash 2# 3# Copy the contents of a directory from the host to a device. 4 5SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 6source $SCRIPT_DIR/utils/android_setup.sh 7source $SCRIPT_DIR/utils/setup_adb.sh 8 9adb_push_if_needed ${APP_ARGS[@]} 10exit $? 11