[Android] Launch gradle build at the end of the compilation
Jean-Baptiste Kempf
git at videolan.org
Fri Feb 6 16:56:09 CET 2015
vlc-ports/android | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Feb 6 16:55:50 2015 +0100| [a9e5bd6f02f13a8c978ca78a95a1181462a36b56] | committer: Jean-Baptiste Kempf
Launch gradle build at the end of the compilation
> http://git.videolan.org/gitweb.cgi/vlc-ports/android.git/?a=commit;h=a9e5bd6f02f13a8c978ca78a95a1181462a36b56
---
compile-simple.sh | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/compile-simple.sh b/compile-simple.sh
index 301a47e..751cf6f 100755
--- a/compile-simple.sh
+++ b/compile-simple.sh
@@ -134,4 +134,8 @@ fi
# Compile the UI #
##################
-./gradlew tasks
+if [ "$RELEASE" = 1 ]; then
+ ./gradlew assembleVanillaRelease
+else
+ ./gradlew assembleVanillaDebug
+fi
More information about the Android
mailing list