0
0
mirror of https://github.com/markusfisch/BinaryEye.git synced 2024-09-20 12:02:17 +02:00
BinaryEye/Makefile
2020-05-15 13:38:51 +02:00

47 lines
707 B
Makefile

PACKAGE = de.markusfisch.android.binaryeye
all: debug install start
debug:
./gradlew assembleDebug
release: lint
./gradlew assembleRelease
bundle: lint
./gradlew bundleRelease
lint:
./gradlew lintDebug
infer: clean
infer -- ./gradlew assembleDebug
test:
./gradlew test
cat:
./gradlew test cAT
install:
adb $(TARGET) install -r app/build/outputs/apk/debug/app-debug.apk
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
images:
svg/update.sh
avocado:
avocado $(shell fgrep -rl '<vector' app/src/main/res)
clean:
./gradlew clean