[Android] use compile-libvlc.sh now
Geoffrey Métais
git at videolan.org
Fri Feb 6 15:37:49 CET 2015
vlc-ports/android | branch: master | Geoffrey Métais <geoffrey.metais at gmail.com> | Thu Feb 5 18:35:47 2015 +0100| [d0beffdd1795de3cb4b7fb3735ddb999397a45bd] | committer: Geoffrey Métais
use compile-libvlc.sh now
> http://git.videolan.org/gitweb.cgi/vlc-ports/android.git/?a=commit;h=d0beffdd1795de3cb4b7fb3735ddb999397a45bd
---
libvlc/build.gradle | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/libvlc/build.gradle b/libvlc/build.gradle
index 5e3219b..100bfa6 100644
--- a/libvlc/build.gradle
+++ b/libvlc/build.gradle
@@ -15,11 +15,11 @@ task buildDebug(type:Exec) {
properties.load(project.rootProject.file('local.properties').newDataInputStream())
environment 'ANDROID_NDK', properties.getProperty('ndk.dir')
environment 'ANDROID_SDK', properties.getProperty('sdk.dir')
- environment 'ANDROID_ABI', 'armeabi-v7a x86'
+ environment 'ANDROID_ABI', properties.getProperty('abi')
}
workingDir '..'
- commandLine './compile.sh'
- args('jni')
+ commandLine './compile-libvlc.sh'
+// args('jni')
}
task buildRelease(type:Exec) {
@@ -28,12 +28,12 @@ task buildRelease(type:Exec) {
properties.load(project.rootProject.file('local.properties').newDataInputStream())
environment 'ANDROID_NDK', properties.getProperty('ndk.dir')
environment 'ANDROID_SDK', properties.getProperty('sdk.dir')
- environment 'ANDROID_ABI', 'armeabi-v7a x86'
+ environment 'ANDROID_ABI', properties.getProperty('abi')
}
workingDir '..'
- commandLine './compile.sh'
- args('jni', 'release')
+ commandLine './compile-libvlc.sh'
+// args('jni', 'release')
}
android {
More information about the Android
mailing list