[Android] build: fix task dependency
    Thomas Guillem 
    git at videolan.org
       
    Thu Jul 21 15:12:41 CEST 2016
    
    
  
vlc-android | branch: 2.0.x | Thomas Guillem <thomas at gllm.fr> | Thu Jul 21 15:09:59 2016 +0200| [8c8310884ae2de2a69f0947a79e5a803b48fe09b] | committer: Thomas Guillem
build: fix task dependency
assets should be copied before merging.
> https://code.videolan.org/videolan/vlc-android/commit/8c8310884ae2de2a69f0947a79e5a803b48fe09b
---
 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