You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
FoxMagiskModuleManager/rundebug

8 lines
277 B
Bash

#!/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