mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-28 17:16:29 +03:00
13 lines
200 B
Bash
Executable File
13 lines
200 B
Bash
Executable File
#!/bin/sh
|
|
adb devices || exit
|
|
|
|
cd "$(dirname "$0")" || exit
|
|
|
|
./assets.sh || exit
|
|
|
|
./gradlew build || exit
|
|
|
|
adb install -r app/build/outputs/apk/debug/app-debug.apk
|
|
|
|
#ndk-gdb --force --start --verbose
|