12f850c8e1
* Create Shaders.ts * Add `previewType` and `enableFpsGraph` * Add RN Skia native dependency * Add Skia Preview View on iOS * Pass 1 * Update FrameHostObject.mm * Wrap Canvas * Lockfiles * fix: Fix stuff * chore: Upgrade RNWorklets * Add `previewType` to set the Preview * feat: Add Example * Update project.pbxproj * `enableFpsGraph` * Cache the `std::shared_ptr<FrameHostObject>` * Update CameraView+RecordVideo.swift * Update SkiaMetalCanvasProvider.mm * Android: Integrate Skia Dependency * fix: Use new Prefix * Add example for rendering shader * chore: Upgrade CameraX * Remove KTX * Enable `viewBinding` * Revert "Enable `viewBinding`" This reverts commit f2a603f53b33ea4311a296422ffd1a910ce03f9e. * Revert "chore: Upgrade CameraX" This reverts commit 8dc832cf8754490d31a6192e6c1a1f11cdcd94fe. * Remove unneeded `ProcessCameraProvider.getInstance()` call * fix: Add REA hotfix patch * fix: Fix FrameHostObject dead in runAsync * fix: Make `runAsync` run truly async by dropping new Frames while executing * chore: Upgrade RN Worklets to latest * chore: Upgrade RN Skia * Revert "Remove KTX" This reverts commit 253f586633f7af2da992d2279fc206dc62597129. * Make Skia optional in CMake * Fix import * Update CMakeLists.txt * Update build.gradle * Update CameraView.kt * Update CameraView.kt * Update CameraView.kt * Update Shaders.ts * Center Blur * chore: Upgrade RN Worklets * feat: Add `toByteArray()`, `orientation`, `isMirrored` and `timestamp` to `Frame` (#1487) * feat: Implement `orientation` and `isMirrored` on Frame * feat: Add `toArrayBuffer()` func * perf: Do faster buffer copy * feat: Implement `toArrayBuffer()` on Android * feat: Add `orientation` and `isMirrored` to Android * feat: Add `timestamp` to Frame * Update Frame.ts * Update JImageProxy.h * Update FrameHostObject.cpp * Update FrameHostObject.cpp * Update CameraPage.tsx * fix: Format Swift
171 lines
5.5 KiB
Groovy
171 lines
5.5 KiB
Groovy
import java.nio.file.Paths
|
|
|
|
buildscript {
|
|
def kotlin_version = rootProject.ext.has('kotlinVersion') ? rootProject.ext.get('kotlinVersion') : project.properties['VisionCamera_kotlinVersion']
|
|
|
|
repositories {
|
|
maven {
|
|
url "https://plugins.gradle.org/m2/"
|
|
}
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
|
|
dependencies {
|
|
classpath "com.android.tools.build:gradle:7.3.1"
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlin_version"
|
|
}
|
|
}
|
|
|
|
def kotlin_version = rootProject.ext.has('kotlinVersion') ? rootProject.ext.get('kotlinVersion') : project.properties['VisionCamera_kotlinVersion']
|
|
|
|
def resolveBuildType() {
|
|
Gradle gradle = getGradle()
|
|
String tskReqStr = gradle.getStartParameter().getTaskRequests()['args'].toString()
|
|
|
|
return tskReqStr.contains('Release') ? 'release' : 'debug'
|
|
}
|
|
|
|
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"
|
|
}
|
|
|
|
if (isNewArchitectureEnabled()) {
|
|
apply plugin: 'com.facebook.react'
|
|
}
|
|
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
def safeExtGet(prop, fallback) {
|
|
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
}
|
|
|
|
def reactNativeArchitectures() {
|
|
def value = project.getProperties().get("reactNativeArchitectures")
|
|
return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
|
|
}
|
|
|
|
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()
|
|
}
|
|
throw new GradleException("react-native-vision-camera: Failed to find node_modules/ path!")
|
|
}
|
|
|
|
def nodeModules = findNodeModules(projectDir)
|
|
def isSkiaInstalled = findProject(":shopify_react-native-skia") != null
|
|
logger.warn("react-native-vision-camera: Skia integration is ${isSkiaInstalled ? "enabled" : "disabled"}!")
|
|
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion safeExtGet("compileSdkVersion", 28)
|
|
|
|
// 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
|
|
}
|
|
|
|
buildFeatures {
|
|
prefab true
|
|
}
|
|
|
|
defaultConfig {
|
|
minSdkVersion safeExtGet('minSdkVersion', 21)
|
|
targetSdkVersion safeExtGet('targetSdkVersion', 33)
|
|
versionCode 1
|
|
versionName "1.0"
|
|
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
cppFlags "-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all"
|
|
arguments "-DANDROID_STL=c++_shared",
|
|
"-DNODE_MODULES_DIR=${nodeModules}",
|
|
"-DENABLE_SKIA_INTEGRATION=${isSkiaInstalled}"
|
|
abiFilters (*reactNativeArchitectures())
|
|
}
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
path "CMakeLists.txt"
|
|
}
|
|
}
|
|
packagingOptions {
|
|
doNotStrip resolveBuildType() == 'debug' ? "**/**/*.so" : ''
|
|
excludes = [
|
|
"META-INF",
|
|
"META-INF/**",
|
|
"**/libjsi.so",
|
|
]
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
//noinspection GradleDynamicVersion
|
|
implementation 'com.facebook.react:react-android:+'
|
|
|
|
implementation 'androidx.core:core-ktx:1.3.2'
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-guava:1.5.2"
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2"
|
|
|
|
implementation "androidx.camera:camera-core:1.1.0-beta02"
|
|
implementation "androidx.camera:camera-camera2:1.1.0-beta02"
|
|
implementation "androidx.camera:camera-lifecycle:1.1.0-beta02"
|
|
implementation "androidx.camera:camera-video:1.1.0-beta02"
|
|
|
|
implementation "androidx.camera:camera-view:1.1.0-beta02"
|
|
implementation "androidx.camera:camera-extensions:1.1.0-beta02"
|
|
|
|
implementation "androidx.exifinterface:exifinterface:1.3.3"
|
|
|
|
implementation project(":react-native-worklets")
|
|
|
|
if (isSkiaInstalled) {
|
|
implementation project(":shopify_react-native-skia")
|
|
}
|
|
}
|
|
|
|
// Resolves "LOCAL_SRC_FILES points to a missing file, Check that libfb.so exists or that its path is correct".
|
|
tasks.whenTaskAdded { task ->
|
|
if (task.name.contains("configureCMakeDebug")) {
|
|
rootProject.getTasksByName("packageReactNdkDebugLibs", true).forEach {
|
|
task.dependsOn(it)
|
|
}
|
|
}
|
|
// We want to add a dependency for both configureCMakeRelease and configureCMakeRelWithDebInfo
|
|
if (task.name.contains("configureCMakeRel")) {
|
|
rootProject.getTasksByName("packageReactNdkReleaseLibs", true).forEach {
|
|
task.dependsOn(it)
|
|
}
|
|
}
|
|
}
|