2023-02-13 07:22:45 -07:00
|
|
|
import java.nio.file.Paths
|
|
|
|
|
2021-02-19 08:07:53 -07:00
|
|
|
buildscript {
|
|
|
|
def kotlin_version = rootProject.ext.has('kotlinVersion') ? rootProject.ext.get('kotlinVersion') : project.properties['VisionCamera_kotlinVersion']
|
|
|
|
|
|
|
|
repositories {
|
2021-02-19 12:36:49 -07:00
|
|
|
maven {
|
|
|
|
url "https://plugins.gradle.org/m2/"
|
|
|
|
}
|
2023-02-09 03:52:41 -07:00
|
|
|
mavenCentral()
|
|
|
|
google()
|
2021-02-19 08:07:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-08-21 06:08:10 -06:00
|
|
|
classpath "com.android.tools.build:gradle:7.4.2"
|
2021-02-19 08:07:53 -07:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2021-02-19 12:36:49 -07:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
|
2021-02-19 08:07:53 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-09 03:52:41 -07:00
|
|
|
def resolveBuildType() {
|
|
|
|
Gradle gradle = getGradle()
|
|
|
|
String tskReqStr = gradle.getStartParameter().getTaskRequests()['args'].toString()
|
2021-02-19 08:07:53 -07:00
|
|
|
|
2023-02-09 03:52:41 -07:00
|
|
|
return tskReqStr.contains('Release') ? 'release' : 'debug'
|
2021-02-19 08:07:53 -07:00
|
|
|
}
|
|
|
|
|
2023-02-09 03:52:41 -07:00
|
|
|
def isNewArchitectureEnabled() {
|
|
|
|
// To opt-in for the New Architecture, you can either:
|
|
|
|
// - Set `newArchEnabled` to true inside the `gradle.properties` file
|
|
|
|
// - Invoke gradle with `-newArchEnabled=true`
|
|
|
|
// - Set an environment variable `ORG_GRADLE_PROJECT_newArchEnabled=true`
|
|
|
|
return project.hasProperty("newArchEnabled") && project.newArchEnabled == "true"
|
2021-02-19 08:07:53 -07:00
|
|
|
}
|
|
|
|
|
2023-02-09 03:52:41 -07:00
|
|
|
if (isNewArchitectureEnabled()) {
|
|
|
|
apply plugin: 'com.facebook.react'
|
2022-08-09 10:20:42 -06:00
|
|
|
}
|
2023-02-09 03:52:41 -07:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
2022-08-09 10:20:42 -06:00
|
|
|
|
2023-02-09 03:52:41 -07:00
|
|
|
def safeExtGet(prop, fallback) {
|
|
|
|
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
|
|
}
|
2022-01-03 03:54:32 -07:00
|
|
|
|
2023-02-09 03:52:41 -07:00
|
|
|
def reactNativeArchitectures() {
|
|
|
|
def value = project.getProperties().get("reactNativeArchitectures")
|
|
|
|
return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
|
|
|
|
}
|
|
|
|
|
2023-02-13 07:22:45 -07:00
|
|
|
static def findNodeModules(baseDir) {
|
|
|
|
def basePath = baseDir.toPath().normalize()
|
|
|
|
// Node's module resolution algorithm searches up to the root directory,
|
|
|
|
// after which the base path will be null
|
|
|
|
while (basePath) {
|
|
|
|
def nodeModulesPath = Paths.get(basePath.toString(), "node_modules")
|
|
|
|
def reactNativePath = Paths.get(nodeModulesPath.toString(), "react-native")
|
|
|
|
if (nodeModulesPath.toFile().exists() && reactNativePath.toFile().exists()) {
|
|
|
|
return nodeModulesPath.toString()
|
|
|
|
}
|
|
|
|
basePath = basePath.getParent()
|
|
|
|
}
|
2023-02-15 09:39:46 -07:00
|
|
|
throw new GradleException("react-native-vision-camera: Failed to find node_modules/ path!")
|
2023-02-13 07:22:45 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
def nodeModules = findNodeModules(projectDir)
|
|
|
|
|
2023-08-23 04:42:38 -06:00
|
|
|
def hasWorklets = !safeExtGet("VisionCamera_disableFrameProcessors", false) && findProject(":react-native-worklets-core") != null
|
|
|
|
logger.warn("[VisionCamera] react-native-worklets-core ${hasWorklets ? "found" : "not found"}, Frame Processors ${hasWorklets ? "enabled" : "disabled"}!")
|
|
|
|
|
2023-02-09 03:52:41 -07:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
2022-01-03 03:54:32 -07:00
|
|
|
}
|
2022-01-02 09:35:26 -07:00
|
|
|
|
2021-02-19 08:07:53 -07:00
|
|
|
android {
|
2023-07-03 14:07:49 -06:00
|
|
|
namespace "com.mrousavy.camera.example"
|
2023-02-09 03:52:41 -07:00
|
|
|
|
|
|
|
// Used to override the NDK path/version on internal CI or by allowing
|
|
|
|
// users to customize the NDK path/version from their root project (e.g. for M1 support)
|
|
|
|
if (rootProject.hasProperty("ndkPath")) {
|
|
|
|
ndkPath rootProject.ext.ndkPath
|
|
|
|
}
|
|
|
|
if (rootProject.hasProperty("ndkVersion")) {
|
|
|
|
ndkVersion rootProject.ext.ndkVersion
|
|
|
|
}
|
2021-06-27 04:37:54 -06:00
|
|
|
|
2023-02-08 09:48:22 -07:00
|
|
|
buildFeatures {
|
|
|
|
prefab true
|
2023-01-30 11:38:52 -07:00
|
|
|
}
|
|
|
|
|
2021-02-19 08:07:53 -07:00
|
|
|
defaultConfig {
|
2023-10-03 05:52:42 -06:00
|
|
|
minSdkVersion safeExtGet('minSdkVersion', 23)
|
2023-08-21 06:08:10 -06:00
|
|
|
compileSdkVersion safeExtGet('compileSdkVersion', 33)
|
2023-02-09 03:52:41 -07:00
|
|
|
targetSdkVersion safeExtGet('targetSdkVersion', 33)
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
|
2021-06-27 04:37:54 -06:00
|
|
|
|
2023-02-13 07:22:45 -07:00
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
|
|
|
cppFlags "-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all"
|
|
|
|
arguments "-DANDROID_STL=c++_shared",
|
2023-08-23 04:42:38 -06:00
|
|
|
"-DNODE_MODULES_DIR=${nodeModules}",
|
2023-09-01 04:20:17 -06:00
|
|
|
"-DENABLE_FRAME_PROCESSORS=${hasWorklets}"
|
2023-02-13 07:22:45 -07:00
|
|
|
abiFilters (*reactNativeArchitectures())
|
2021-06-27 04:37:54 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-09 03:52:41 -07:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
2021-06-27 04:37:54 -06:00
|
|
|
}
|
|
|
|
|
2023-02-13 07:22:45 -07:00
|
|
|
externalNativeBuild {
|
|
|
|
cmake {
|
|
|
|
path "CMakeLists.txt"
|
2021-06-27 04:37:54 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
packagingOptions {
|
2023-02-09 03:52:41 -07:00
|
|
|
doNotStrip resolveBuildType() == 'debug' ? "**/**/*.so" : ''
|
|
|
|
excludes = [
|
|
|
|
"META-INF",
|
|
|
|
"META-INF/**",
|
2023-02-22 04:28:51 -07:00
|
|
|
"**/libc++_shared.so",
|
|
|
|
"**/libfbjni.so",
|
2023-02-09 03:52:41 -07:00
|
|
|
"**/libjsi.so",
|
2023-02-22 04:28:51 -07:00
|
|
|
"**/libfolly_json.so",
|
|
|
|
"**/libfolly_runtime.so",
|
|
|
|
"**/libglog.so",
|
|
|
|
"**/libhermes.so",
|
|
|
|
"**/libhermes-executor-debug.so",
|
|
|
|
"**/libhermes_executor.so",
|
|
|
|
"**/libreactnativejni.so",
|
|
|
|
"**/libturbomodulejsijni.so",
|
|
|
|
"**/libreact_nativemodule_core.so",
|
|
|
|
"**/libjscexecutor.so"
|
2023-01-30 11:38:52 -07:00
|
|
|
]
|
2021-02-19 08:07:53 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-02-09 03:52:41 -07:00
|
|
|
//noinspection GradleDynamicVersion
|
2023-10-04 04:53:52 -06:00
|
|
|
implementation "com.facebook.react:react-android:+"
|
2021-09-23 06:22:11 -06:00
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2"
|
2023-10-04 04:53:52 -06:00
|
|
|
implementation "com.google.android.gms:play-services-mlkit-barcode-scanning:18.3.0"
|
2021-02-19 12:36:49 -07:00
|
|
|
|
2023-08-23 04:42:38 -06:00
|
|
|
if (hasWorklets) {
|
|
|
|
// Frame Processor integration (optional)
|
|
|
|
implementation project(":react-native-worklets-core")
|
|
|
|
}
|
2021-02-19 08:07:53 -07:00
|
|
|
}
|
2021-06-27 04:37:54 -06:00
|
|
|
|
2023-10-05 02:46:33 -06:00
|
|
|
task deleteCmakeCache() {
|
2023-10-04 03:06:39 -06:00
|
|
|
doFirst {
|
|
|
|
delete "${projectDir}/.cxx"
|
2023-10-04 03:11:12 -06:00
|
|
|
delete "${nodeModules}/react-native-vision-camera/android/.cxx"
|
|
|
|
delete "${nodeModules}/react-native-vision-camera/android/build"
|
2023-10-04 03:06:39 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-21 06:08:10 -06:00
|
|
|
tasks.configureEach { task ->
|
2023-10-04 03:06:39 -06:00
|
|
|
// C++ build
|
2023-02-09 03:52:41 -07:00
|
|
|
if (task.name.contains("configureCMakeDebug")) {
|
|
|
|
rootProject.getTasksByName("packageReactNdkDebugLibs", true).forEach {
|
|
|
|
task.dependsOn(it)
|
2022-01-02 09:35:26 -07:00
|
|
|
}
|
2021-09-06 02:32:06 -06:00
|
|
|
}
|
2023-02-09 03:52:41 -07:00
|
|
|
if (task.name.contains("configureCMakeRel")) {
|
|
|
|
rootProject.getTasksByName("packageReactNdkReleaseLibs", true).forEach {
|
|
|
|
task.dependsOn(it)
|
2022-01-02 09:35:26 -07:00
|
|
|
}
|
2021-06-27 04:37:54 -06:00
|
|
|
}
|
2023-10-04 03:06:39 -06:00
|
|
|
// C++ clean
|
|
|
|
if (task.name.contains("clean")) {
|
2023-10-05 02:46:33 -06:00
|
|
|
task.dependsOn(deleteCmakeCache)
|
2023-10-04 03:06:39 -06:00
|
|
|
}
|
2021-06-27 04:37:54 -06:00
|
|
|
}
|