Files
flipper/xplat/build.gradle
Lorenzo Blasa 30becc1ced Remove RSocket
Summary:
^
Changelog: Remove rsocket dependency for Android

Reviewed By: aigoncharov

Differential Revision: D34418565

fbshipit-source-id: d2bfd6cede3c85709e252a8205525aa4595b4791
2022-02-25 02:33:22 -08:00

48 lines
1.1 KiB
Groovy

/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
apply plugin: 'com.android.library'
android {
compileSdkVersion rootProject.compileSdkVersion
buildToolsVersion rootProject.buildToolsVersion
ndkVersion rootProject.ndkVersion
defaultConfig {
minSdkVersion rootProject.minSdkVersion
targetSdkVersion rootProject.targetSdkVersion
externalNativeBuild {
cmake {
arguments '-DANDROID_TOOLCHAIN=clang', '-DANDROID_STL=c++_shared'
}
}
}
externalNativeBuild {
cmake {
path './CMakeLists.txt'
}
}
sourceSets {
main {
manifest.srcFile './AndroidManifest.xml'
}
}
buildFeatures {
prefab true
}
dependencies {
implementation project(':third-party')
implementation project(':folly')
implementation deps.openssl
}
}
preBuild.dependsOn(tasks.getByPath(':third-party:prepare'))