Summary: There's been a breaking change in 0.5 and old versions are ABI-incompatible with new ones. Reviewed By: muraziz Differential Revision: D8913456 fbshipit-source-id: 89221c5ac95c7c2197083a5390403c72e7e33af1
34 lines
854 B
Groovy
34 lines
854 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion rootProject.compileSdkVersion
|
|
buildToolsVersion rootProject.buildToolsVersion
|
|
|
|
defaultConfig {
|
|
minSdkVersion rootProject.minSdkVersion
|
|
targetSdkVersion rootProject.targetSdkVersion
|
|
|
|
ndk {
|
|
abiFilters 'x86', 'x86_64', 'armeabi', 'armeabi-v7a', 'arm64-v8a'
|
|
}
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
arguments '-DANDROID_TOOLCHAIN=clang', '-DANDROID_STL=c++_static'
|
|
}
|
|
}
|
|
}
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
path 'src/main/cpp/CMakeLists.txt'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.facebook.soloader:soloader:0.5.1'
|
|
compileOnly 'com.google.code.findbugs:jsr305:3.0.1'
|
|
compileOnly project(':yoga:proguard-annotations')
|
|
}
|
|
}
|