diff --git a/Makefile b/Makefile index d8cf5f0..229cdea 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,12 @@ PHONY: all -all: build upload +all: build-release upload + +upload-release: build-release + adb install -r build/app/outputs/apk/app-release.apk upload: build-debug - adb install -r build/app/outputs/apk/app.apk + adb install -r build/app/outputs/apk/app-debug.apk build-debug: flutter build apk --debug