mirror of
https://github.com/inaturalist/iNaturalistReactNative.git
synced 2026-05-05 22:25:57 -04:00
* Update to RN 0.75.5 with upgrade helper diff
* Update .flowconfig
* Update package-lock.json
* Update Gemfile.lock
* Update Podfile.lock
* Update project.pbxproj
* Use double quotes
* Update to RN 0.75.5 with upgrade helper diff
* Update .flowconfig
* Update package-lock.json
* Update Gemfile.lock
* Update Podfile.lock
* Update project.pbxproj
* Use double quotes
* Update Podfile.lock
* Update CustomTabBar.js
* Revert "Update CustomTabBar.js"
This reverts commit 2eb085e3bb.
* Update NavBar. Remove percentage based width as it broke the UI
Now we rely solely on flexbox spacing of justify-around.
* Update FloatingActionButton percentage values
* Update CustomTabBar.test.js.snap
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 = "34.0.0"
|
|
minSdkVersion = 23
|
|
compileSdkVersion = 34
|
|
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")
|
|
}
|
|
}
|
|
}
|