Browse Source

Android : Ensure assets are populated _before_ packaging theme into aar.

JNI-44
Edouard Tisserant 10 years ago
parent
commit
dc3780b5ac
  1. 4
      android/build.gradle

4
android/build.gradle

@ -22,7 +22,7 @@ buildscript {
}
}
apply plugin: 'com.android.library'
apply plugin: 'android-library'
android {
compileSdkVersion 21
@ -131,6 +131,8 @@ android {
compileTask -> compileTask.dependsOn jniBuild
}
assemble.dependsOn unzipDeps
task cleanNative(type: Exec) {
commandLine getNdkBuildCmd(), 'clean'
}

Loading…
Cancel
Save