[Gekidou] Update dependencies (#6305)

* Update dependencies

* Fix iOS build

* update fastlane
This commit is contained in:
Elias Nahum
2022-05-24 08:47:12 -04:00
committed by GitHub
parent a4e4e18445
commit 19ecc150b6
17 changed files with 10760 additions and 6673 deletions

View File

@@ -1,3 +1,5 @@
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 {
@@ -6,12 +8,18 @@ buildscript {
minSdkVersion = 24
compileSdkVersion = 30
targetSdkVersion = 30
ndkVersion = "21.4.7075529"
supportLibVersion = "30.0.0"
kotlinVersion = "1.5.30"
kotlin_version = "1.5.30"
firebaseVersion = "21.0.0"
RNNKotlinVersion = kotlinVersion
if (System.properties['os.arch'] == "aarch64") {
// For M1 Users we need to use the NDK 24 which added support for aarch64
ndkVersion = "24.0.8215888"
} else {
// Otherwise we default to the side-by-side NDK version from AGP.
ndkVersion = "21.4.7075529"
}
}
repositories {
mavenCentral()