-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (19 loc) · 722 Bytes
/
Copy pathMakefile
File metadata and controls
28 lines (19 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
.PHONY: build
clean:
./gradlew clean
build:
./gradlew assembleDebug
apk: build
app: build
buildRelease:
./gradlew assembleRelease
install: build
adb install ./app/build/outputs/apk/**/*.apk
installRelease: buildRelease
adb install ./app/build/outputs/apk/**/*.apk
run: install open
runRelease: installRelease openRelease
open:
adb shell am start -n "de.markusressel.mkdocseditor.debug/de.markusressel.mkdocseditor.ui.activity.MainActivityCompose" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
openRelease:
adb shell am start -n "de.markusressel.mkdocseditor/de.markusressel.mkdocseditor.ui.activity.MainActivityCompose" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER