From 792eb7bcdf254cfb353f6f9750093ef5e5fbf447 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20D=C4=85bek?= Date: Mon, 16 Nov 2015 11:16:25 +0100 Subject: [PATCH] updated Makefile tasks --- Makefile | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 969ebc2c..9480b492 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,22 @@ release: + mvn install -P release + zipalign -v 4 target/aircasting.apk aircasting.apk + +prepare: mvn install -DskipTests=true -P release adb.install: adb install -r target/aircasting.apk && adb shell am start -n pl.llp.aircasting/.activity.SplashActivity -install: release adb.install +install: prepare adb.install test: mvn test +verify: + jarsigner -verify -certs -verbose aircasting.apk + zipalign -c -v 4 aircasting.apk + clean: - mvn clean + rm -rf target + rm -f *.apk