From e7eeef2087fa8741964172cc253aaf6f0b8b1b3d Mon Sep 17 00:00:00 2001 From: anonymouzz Date: Fri, 4 Aug 2017 10:42:11 +0700 Subject: [PATCH] Add Makefile, refs #9991 --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d8cf5f0 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +PHONY: all + +all: build upload + +upload: build-debug + adb install -r build/app/outputs/apk/app.apk + +build-debug: + flutter build apk --debug + +build-release: + flutter build apk + +clean: + flutter build clean