From 2cce0fed672b58b77802948a2f6bb2d2273bd3bf Mon Sep 17 00:00:00 2001 From: Jules Aguillon Date: Sat, 16 Apr 2022 23:38:16 +0200 Subject: Makefile: Pass -r to adb install Fails to update on some versions of Android without it. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 07b7228..a606299 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ debug: _build/$(PACKAGE_NAME).debug.apk release: _build/$(PACKAGE_NAME).apk installd: _build/$(PACKAGE_NAME).debug.apk - adb install "$<" + adb install -r "$<" clean: rm -rf _build/*.dex _build/class _build/gen _build/*.apk _build/*.unsigned-apk \ -- cgit v1.2.3