Files
checker/Makefile
2017-08-04 10:42:11 +07:00

16 lines
202 B
Makefile

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