Makefile: Pass -r to adb install

Fails to update on some versions of Android without it.
This commit is contained in:
Jules Aguillon 2022-04-16 23:38:16 +02:00
parent 9a8c4f291d
commit 2cce0fed67

View File

@ -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 \