9 lines
106 B
Bash
9 lines
106 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# Build and push
|
|
./gradlew installDebug
|
|
|
|
# Run the app
|
|
adb shell monkey -p com.jerboa 1
|