Created
September 23, 2016 21:54
-
-
Save navinpai/c447eebd3105d59f7eb27bd04c8273c7 to your computer and use it in GitHub Desktop.
build.gradle with custom ndkBuild task
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sourceSets.main { | |
jni.srcDirs = [] //disable automatic ndk-build call | |
jniLibs.srcDir 'src/main/jni' | |
} | |
task ndkBuild(type: Exec, description: 'Compile JNI source via NDK') { | |
commandLine "<path to your ndk>/ndk-build", | |
'NDK_PROJECT_PATH=build/intermediates/ndk', | |
'NDK_LIBS_OUT=src/main/jniLibs', | |
'APP_BUILD_SCRIPT=src/main/jni/Android.mk', | |
'NDK_APPLICATION_MK=src/main/jni/Application.mk' | |
} | |
tasks.withType(JavaCompile) { | |
compileTask -> compileTask.dependsOn ndkBuild | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment