2015-12-06 23:25:18 -07:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2019-06-19 01:37:21 -06:00
|
|
|
ext {
|
2023-09-28 00:25:13 -06:00
|
|
|
buildToolsVersion = "33.0.0"
|
2022-06-15 11:24:55 -06:00
|
|
|
minSdkVersion = 21
|
2023-09-28 00:25:13 -06:00
|
|
|
compileSdkVersion = 33
|
|
|
|
targetSdkVersion = 33
|
2023-11-24 05:17:13 -07:00
|
|
|
kotlinVersion = "1.8.0"
|
2022-12-17 08:35:37 -07:00
|
|
|
|
2023-09-28 00:25:13 -06: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 05:17:13 -07:00
|
|
|
|
|
|
|
RNVUseExoplayerIMA = true
|
2022-05-19 07:29:25 -06:00
|
|
|
}
|
2015-12-06 23:25:18 -07:00
|
|
|
repositories {
|
2019-06-19 01:37:21 -06:00
|
|
|
google()
|
2022-12-17 08:35:37 -07:00
|
|
|
mavenCentral()
|
2015-12-06 23:25:18 -07:00
|
|
|
}
|
|
|
|
dependencies {
|
2023-09-28 00:25:13 -06:00
|
|
|
classpath("com.android.tools.build:gradle")
|
2022-12-17 08:35:37 -07:00
|
|
|
classpath("com.facebook.react:react-native-gradle-plugin")
|
2015-12-06 23:25:18 -07:00
|
|
|
}
|
|
|
|
}
|