Massive/android/build.gradle

26 lines
744 B
Groovy
Raw Permalink Normal View History

2022-06-30 06:50:52 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
buildToolsVersion = "34.0.0"
2022-06-30 06:50:52 +00:00
minSdkVersion = 21
compileSdkVersion = 34
targetSdkVersion = 34
2022-06-30 06:50:52 +00:00
// We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
ndkVersion = "25.1.8937393"
kotlinVersion = "1.8.0"
2022-06-30 06:50:52 +00:00
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle")
2022-06-30 06:50:52 +00:00
classpath("com.facebook.react:react-native-gradle-plugin")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
2022-06-30 06:50:52 +00:00
}
}
apply plugin: "com.facebook.react.rootproject"