bsky-app/android/build.gradle

24 lines
658 B
Groovy
Raw Normal View History

2022-06-08 00:50:05 +02:00
import org.apache.tools.ant.taskdefs.condition.Os
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
2022-12-14 16:42:49 +01:00
buildToolsVersion = "33.0.0"
2022-06-08 00:50:05 +02:00
minSdkVersion = 21
2022-12-14 16:42:49 +01:00
compileSdkVersion = 33
targetSdkVersion = 33
2022-06-08 00:50:05 +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"
2022-06-08 00:50:05 +02:00
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:7.3.1")
2022-06-08 00:50:05 +02:00
classpath("com.facebook.react:react-native-gradle-plugin")
}
}