Files
jellyfin-audio-player/android/build.gradle

25 lines
692 B
Groovy
Raw Normal View History

2022-05-04 18:28:00 +02:00
import org.apache.tools.ant.taskdefs.condition.Os
2020-06-16 17:51:51 +02:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
2022-11-12 17:20:02 +01:00
buildToolsVersion = "33.0.0"
kotlin_version = "1.7.20"
minSdkVersion = 21
2022-11-12 17:20:02 +01:00
compileSdkVersion = 33
targetSdkVersion = 33
2022-05-04 18:28:00 +02:00
2023-04-30 23:36:32 +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"
2020-06-16 17:51:51 +02:00
}
repositories {
google()
2021-10-25 23:36:14 +02:00
mavenCentral()
2020-06-16 17:51:51 +02:00
}
dependencies {
2023-04-30 23:36:32 +02:00
classpath("com.android.tools.build:gradle:7.3.1")
2022-05-04 18:28:00 +02:00
classpath("com.facebook.react:react-native-gradle-plugin")
2020-06-16 17:51:51 +02:00
}
}