nostros/android/build.gradle

22 lines
607 B
Groovy
Raw Normal View History

2022-10-24 17:27:31 +00:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
2023-03-16 20:16:08 +00:00
buildToolsVersion = "33.0.0"
2022-10-24 17:27:31 +00:00
minSdkVersion = 21
2023-03-16 20:16:08 +00:00
compileSdkVersion = 33
targetSdkVersion = 33
2022-10-30 19:27:56 +00:00
2023-03-16 20:16:08 +00:00
// We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
ndkVersion = "23.1.7779620"
2022-10-24 17:27:31 +00:00
}
repositories {
google()
2022-10-30 16:43:26 +00:00
mavenCentral()
2022-10-24 17:27:31 +00:00
}
dependencies {
2023-03-16 20:16:08 +00:00
classpath("com.android.tools.build:gradle:7.3.1")
2022-10-30 19:27:56 +00:00
classpath("com.facebook.react:react-native-gradle-plugin")
2022-10-24 17:27:31 +00:00
}
}