Skip to content
This repository has been archived by the owner on Mar 3, 2020. It is now read-only.

Commit

Permalink
Fix location of installation of native libs
Browse files Browse the repository at this point in the history
  • Loading branch information
Helios Alonso committed Mar 7, 2016
1 parent f0d0c6c commit 8ed7661
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ gen
#gradle files
/.gradle
/build
/libs
/obj

#jekyll files
/_site/
7 changes: 3 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ android {
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['java']
java.srcDirs = ['java']
jniLibs.srcDir 'libs'
jni.srcDirs = []
}
}
Expand All @@ -31,9 +32,7 @@ android {
commandLine 'ndk-build', '-C', file('native/crypto/').absolutePath,
'NDK_APPLICATION_MK=${PWD}/native/Application.mk',
'NDK_MODULE_PATH=${PWD}/native/third-party/',
'APP_BUILD_SCRIPT=${PWD}/native/crypto/Android.mk',
'NDK_OUT=${PWD}/build/ndk/release/obj',
'NDK_LIBS_OUT=${PWD}/build/bundles/release/jni'
'APP_BUILD_SCRIPT=${PWD}/native/crypto/Android.mk'
}

tasks.withType(JavaCompile) {
Expand Down

0 comments on commit 8ed7661

Please sign in to comment.