Add Makefile, refs #9991

This commit is contained in:
anonymouzz
2017-08-04 10:42:11 +07:00
parent d192f5b376
commit e7eeef2087

15
Makefile Normal file
View File

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