2021-01-28 00:41:53 +01:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
|
|
|
ext {
|
2023-02-11 19:15:34 +01:00
|
|
|
buildToolsVersion = "33.0.0"
|
2021-01-28 00:41:53 +01:00
|
|
|
minSdkVersion = 21
|
2023-02-11 19:15:34 +01:00
|
|
|
compileSdkVersion = 33
|
|
|
|
targetSdkVersion = 33
|
|
|
|
kotlinVersion = '1.8.10'
|
2022-11-14 14:52:23 +01:00
|
|
|
|
2023-02-11 19:15:34 +01:00
|
|
|
// We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
|
|
|
|
ndkVersion = "23.1.7779620"
|
2021-01-28 00:41:53 +01:00
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
google()
|
2021-10-24 00:43:00 +02:00
|
|
|
mavenCentral()
|
2022-11-05 22:33:16 +01:00
|
|
|
jcenter()
|
2021-01-28 00:41:53 +01:00
|
|
|
}
|
|
|
|
dependencies {
|
2023-02-25 15:28:01 +01:00
|
|
|
classpath("com.android.tools.build:gradle:7.4.1")
|
2022-05-08 22:35:43 +02:00
|
|
|
classpath("com.facebook.react:react-native-gradle-plugin")
|
2023-01-09 00:55:29 +01:00
|
|
|
classpath 'com.google.gms:google-services:4.3.14'
|
2021-01-28 00:41:53 +01:00
|
|
|
}
|
|
|
|
}
|