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

26 lines
699 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 {
buildToolsVersion = "35.0.0"
minSdkVersion = 24
compileSdkVersion = 35
targetSdkVersion = 35
ndkVersion = "27.1.12297006"
kotlinVersion = "2.0.21"
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 {
2024-01-31 22:10:51 +01:00
classpath("com.android.tools.build:gradle")
2022-05-04 18:28:00 +02:00
classpath("com.facebook.react:react-native-gradle-plugin")
2024-01-31 22:10:51 +01:00
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
2020-06-16 17:51:51 +02:00
}
}
2024-01-31 22:10:51 +01:00
apply plugin: "com.facebook.react.rootproject"