Summary: Updates rsocket to latest version Pull Request resolved: https://github.com/facebook/flipper/pull/225 Reviewed By: jknoxville Differential Revision: D9313576 Pulled By: priteshrnandgaonkar fbshipit-source-id: afd55eddfa79f0f9d2a36a6f0539d823161d1bed
31 lines
694 B
Groovy
31 lines
694 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion rootProject.compileSdkVersion
|
|
buildToolsVersion rootProject.buildToolsVersion
|
|
|
|
defaultConfig {
|
|
minSdkVersion rootProject.minSdkVersion
|
|
targetSdkVersion rootProject.targetSdkVersion
|
|
externalNativeBuild {
|
|
cmake {
|
|
arguments '-DANDROID_TOOLCHAIN=clang'
|
|
}
|
|
}
|
|
}
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
sourceSets {
|
|
main {
|
|
manifest.srcFile './ApplicationManifest.xml'
|
|
}
|
|
}
|
|
externalNativeBuild {
|
|
cmake {
|
|
path './CMakeLists.txt'
|
|
}
|
|
}
|
|
}
|
|
//'x86', 'x86_64', 'armeabi-v7a',
|