Files
PieLauncher/Makefile
Markus Fisch 98e366fa0b Update build tools and remove findbugs
Because the findbugs plugin doesn't work with the new build
tools anymore.
2020-06-07 19:06:52 +02:00

38 lines
634 B
Makefile

PACKAGE = de.markusfisch.android.pielauncher
all: debug install start
debug:
./gradlew assembleDebug
lint:
./gradlew lintDebug
infer: clean
infer -- ./gradlew assembleDebug
release: lint
./gradlew assembleRelease
bundle: lint
./gradlew bundleRelease
install:
adb $(TARGET) install -r app/build/outputs/apk/debug/app-debug.apk
start:
adb $(TARGET) shell 'am start -n \
$(PACKAGE).debug/$(PACKAGE).activity.HomeActivity'
uninstall:
adb $(TARGET) uninstall $(PACKAGE).debug
meminfo:
adb shell dumpsys meminfo $(PACKAGE).debug
avocado:
avocado $(shell fgrep -rl '<vector' app/src/main/res)
clean:
./gradlew clean