-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile
40 lines (28 loc) · 992 Bytes
/
Makefile
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
32
33
34
35
36
37
38
39
40
lint:
./gradlew lintDebug
run-unit-tests:
./gradlew :app:testDebugUnitTest :rules:test
run-instrumented-tests: clear-app-data disable-animations
./gradlew connectedAndroidTest
run-all-tests: run-unit-tests build-install-app run-instrumented-tests
assemble-debug-app:
./gradlew assembleDebug
install-debug-app:
./gradlew installDebug
build-and-install-debug-app: assemble-debug-app install-debug-app
uninstall-app:
adb uninstall [io.github.nuhkoca.vivy]
clear-app-data:
adb shell pm clear [io.github.nuhkoca.vivy]
clear-project:
./gradlew clean cleanBuildCache
list-devices:
adb devices
disable-animations:
adb shell settings put global window_animation_scale 0
adb shell settings put global transition_animation_scale 0
adb shell settings put global animator_duration_scale 0
enable-animations:
adb shell settings put global window_animation_scale 1
adb shell settings put global transition_animation_scale 1
adb shell settings put global animator_duration_scale 1