-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (21 loc) · 757 Bytes
/
Makefile
File metadata and controls
31 lines (21 loc) · 757 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
29
30
31
.PHONY: build
clean:
./gradlew clean
build:
./gradlew assembleDebug
apk: build
app: build
publish:
./gradlew publishMavenPublicationToMavenLocal
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.kodeeditor.debug/de.markusressel.kodeeditor.demo.ComposeMainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
openRelease:
adb shell am start -n "de.markusressel.kodeeditor/de.markusressel.kodeeditor.demo.ComposeMainActivity" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER