mirror of
https://github.com/Fox2Code/FoxMagiskModuleManager
synced 2024-10-30 15:20:15 +00:00
8 lines
277 B
Bash
Executable File
8 lines
277 B
Bash
Executable File
#!/bin/sh
|
|
# File created to run debug when IDE is failing.
|
|
./gradlew app:assembleDefaultDebug
|
|
adb install -r -t -d ./app/build/outputs/apk/default/debug/app-default-debug.apk
|
|
if [ "$?" == "0" ]; then
|
|
adb shell am start com.fox2code.mmm.debug/com.fox2code.mmm.MainActivity
|
|
fi
|