mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-05-04 21:53:59 -04:00
* Changes according to the RN upgrade helper * Update .flowconfig * Update Gemfile.lock * Fix typo in minimunSDK version specified * Disable New Architecture * Prefer double-quotes * Update .flowconfig * Update vision camera patch version number * Update package-lock.json * Update Podfile.lock * Remove no longer needed mock
37 lines
983 B
Groovy
37 lines
983 B
Groovy
import org.apache.tools.ant.taskdefs.condition.Os
|
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext {
|
|
buildToolsVersion = "35.0.0"
|
|
minSdkVersion = 24
|
|
compileSdkVersion = 35
|
|
targetSdkVersion = 34
|
|
ndkVersion = "26.1.10909125"
|
|
kotlinVersion = "1.9.25"
|
|
// This specifies which tensorflow-lite version to use for our vision-plugin.
|
|
tensorflowVersion = "2.14.0"
|
|
}
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle")
|
|
classpath("com.facebook.react:react-native-gradle-plugin")
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
|
|
}
|
|
}
|
|
|
|
apply plugin: "com.facebook.react.rootproject"
|
|
|
|
allprojects {
|
|
repositories {
|
|
// Detox Android setup
|
|
maven {
|
|
url("$rootDir/../node_modules/detox/Detox-android")
|
|
}
|
|
}
|
|
}
|