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