mirror of
https://github.com/Fox2Code/FoxMagiskModuleManager
synced 2024-11-01 09:20:26 +00:00
8 lines
277 B
Plaintext
8 lines
277 B
Plaintext
|
#!/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
|