0
0
mirror of https://github.com/markusfisch/BinaryEye.git synced 2024-09-19 19:42:18 +02:00
BinaryEye/Makefile

47 lines
707 B
Makefile
Raw Normal View History

2017-08-27 15:03:22 +02:00
PACKAGE = de.markusfisch.android.binaryeye
all: debug install start
debug:
./gradlew assembleDebug
release: lint
./gradlew assembleRelease
bundle: lint
./gradlew bundleRelease
2017-08-27 15:03:22 +02:00
lint:
./gradlew lintDebug
infer: clean
infer -- ./gradlew assembleDebug
2018-05-29 21:00:26 +02:00
test:
./gradlew test
cat:
./gradlew test cAT
2018-05-29 21:00:26 +02:00
2017-08-27 15:03:22 +02:00
install:
adb $(TARGET) install -r app/build/outputs/apk/debug/app-debug.apk
2017-08-27 15:03:22 +02:00
start:
adb $(TARGET) shell 'am start -n \
$(PACKAGE).debug/$(PACKAGE).activity.SplashActivity'
uninstall:
adb $(TARGET) uninstall $(PACKAGE).debug
meminfo:
adb shell dumpsys meminfo $(PACKAGE).debug
2017-08-27 15:03:22 +02:00
images:
svg/update.sh
avocado:
avocado $(shell fgrep -rl '<vector' app/src/main/res)
2017-08-27 15:03:22 +02:00
clean:
./gradlew clean