[Android] build: fix task dependency

Thomas Guillem git at videolan.org
Thu Jul 21 15:12:08 CEST 2016


vlc-android | branch: master | Thomas Guillem <thomas at gllm.fr> | Thu Jul 21 15:09:59 2016 +0200| [5a050e7e0a54d3eb1949d4440c7d467ef957a12f] | committer: Thomas Guillem

build: fix task dependency

assets should be copied before merging.

> https://code.videolan.org/videolan/vlc-android/commit/5a050e7e0a54d3eb1949d4440c7d467ef957a12f
---

 vlc-android/build.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/vlc-android/build.gradle b/vlc-android/build.gradle
index 7fd77b4..9227755 100644
--- a/vlc-android/build.gradle
+++ b/vlc-android/build.gradle
@@ -36,7 +36,7 @@ android {
         resValue "string", "build_vlc_revision", vlcRevision()
 
         tasks.whenTaskAdded { task ->
-            if (task.name.startsWith('assemble')) {
+            if (task.name.startsWith('merge')) {
                 task.dependsOn luaPlaylistCopy
                 task.dependsOn luaMetaCopy
             }



More information about the Android mailing list