Skip to content

Commit

Permalink
updated Makefile tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Przemysław Dąbek committed Nov 16, 2015
1 parent 1c606ef commit 792eb7b
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 792eb7b

Please sign in to comment.