2015-12-06 22:25:18 -08:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2019-06-19 14:37:21 +07:00
|
|
|
ext {
|
2023-09-28 08:25:13 +02:00
|
|
|
buildToolsVersion = "33.0.0"
|
2022-06-16 00:24:55 +07:00
|
|
|
minSdkVersion = 21
|
2023-09-28 08:25:13 +02:00
|
|
|
compileSdkVersion = 33
|
|
|
|
targetSdkVersion = 33
|
2023-11-24 13:17:13 +01:00
|
|
|
kotlinVersion = "1.8.0"
|
2022-12-17 16:35:37 +01:00
|
|
|
|
2023-09-28 08:25:13 +02:00
|
|
|
// We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
|
|
|
|
ndkVersion = "23.1.7779620"
|
2023-11-24 13:17:13 +01:00
|
|
|
|
2023-11-30 21:17:41 +01:00
|
|
|
RNVUseExoplayerIMA = System.getenv("RNV_SAMPLE_ENABLE_ADS") ?: true
|
2022-05-19 22:29:25 +09:00
|
|
|
}
|
2015-12-06 22:25:18 -08:00
|
|
|
repositories {
|
2019-06-19 14:37:21 +07:00
|
|
|
google()
|
2022-12-17 16:35:37 +01:00
|
|
|
mavenCentral()
|
2015-12-06 22:25:18 -08:00
|
|
|
}
|
|
|
|
dependencies {
|
2023-09-28 08:25:13 +02:00
|
|
|
classpath("com.android.tools.build:gradle")
|
2022-12-17 16:35:37 +01:00
|
|
|
classpath("com.facebook.react:react-native-gradle-plugin")
|
2015-12-06 22:25:18 -08:00
|
|
|
}
|
|
|
|
}
|