2017-02-23 04:57:16 -08:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
dependencies {
|
2017-06-10 08:13:46 -07:00
|
|
|
classpath 'com.android.tools.build:gradle:2.3.3'
|
2017-02-23 04:57:16 -08:00
|
|
|
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
|
|
|
|
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
|
|
|
|
classpath 'com.nabilhachicha:android-native-dependencies:0.1'
|
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2017-03-07 03:52:51 -08:00
|
|
|
jcenter()
|
2017-02-23 04:57:16 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-19 10:48:59 -07:00
|
|
|
ext {
|
2017-06-16 06:33:32 -07:00
|
|
|
minSdkVersion = 14
|
2017-04-19 10:48:59 -07:00
|
|
|
targetSdkVersion = 25
|
|
|
|
compileSdkVersion = 25
|
|
|
|
buildToolsVersion = '25.0.2'
|
|
|
|
sourceCompatibilityVersion = JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibilityVersion = JavaVersion.VERSION_1_7
|
|
|
|
}
|
|
|
|
|
2017-05-22 10:04:34 -07:00
|
|
|
// If you have an idea on how to avoid this, please get in touch or
|
|
|
|
// answer https://stackoverflow.com/questions/43867014/how-to-use-the-gradle-ndk-build-to-compile-for-the-host-machine.
|
|
|
|
task copyNativeLibs(type: Copy, dependsOn: ':buckBuildNative') {
|
|
|
|
from "${rootDir}/buck-out/gen/java/tests#default,shared-library-symlink-tree/"
|
|
|
|
include '*.so'
|
|
|
|
include '*.dylib'
|
|
|
|
into "$buildDir/jniLibs"
|
|
|
|
}
|
|
|
|
|
|
|
|
task buckBuildNative(type: Exec) {
|
|
|
|
workingDir rootDir
|
|
|
|
environment BUCKVERSION: 'last'
|
|
|
|
commandLine 'buck', 'build', '//java/...'
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
afterEvaluate {
|
|
|
|
tasks.withType(Test) {
|
|
|
|
dependsOn copyNativeLibs
|
|
|
|
def libDir = "${rootDir}/build/jniLibs"
|
|
|
|
systemProperty 'java.library.path', libDir
|
|
|
|
environment 'LD_LIBRARY_PATH', libDir
|
|
|
|
environment 'DYLD_LIBRARY_PATH', libDir
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-23 04:57:16 -08:00
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|