|
|
plugins {
|
|
|
alias(libs.plugins.android.application)
|
|
|
alias(libs.plugins.kotlin.android)
|
|
|
alias(libs.plugins.compose.compiler)
|
|
|
id("org.jetbrains.kotlin.plugin.serialization") version "2.0.20"
|
|
|
id("com.google.devtools.ksp")
|
|
|
}
|
|
|
|
|
|
android {
|
|
|
namespace = "usr.empty.player"
|
|
|
compileSdk = 34
|
|
|
|
|
|
defaultConfig {
|
|
|
applicationId = "usr.empty.player"
|
|
|
minSdk = 34
|
|
|
targetSdk = 35
|
|
|
versionCode = 1
|
|
|
versionName = "0.0.2α"
|
|
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
vectorDrawables {
|
|
|
useSupportLibrary = true
|
|
|
}
|
|
|
}
|
|
|
|
|
|
buildTypes {
|
|
|
release {
|
|
|
isMinifyEnabled = false
|
|
|
proguardFiles(
|
|
|
getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
|
|
|
)
|
|
|
}
|
|
|
}
|
|
|
compileOptions {
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
}
|
|
|
kotlinOptions {
|
|
|
jvmTarget = "1.8"
|
|
|
}
|
|
|
buildFeatures {
|
|
|
compose = true
|
|
|
}
|
|
|
composeOptions {
|
|
|
kotlinCompilerExtensionVersion = "1.5.1"
|
|
|
}
|
|
|
packaging {
|
|
|
resources {
|
|
|
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
|
|
|
dependencies {
|
|
|
implementation(libs.kotlinx.serialization.json)
|
|
|
implementation(libs.androidx.core.ktx)
|
|
|
implementation(libs.androidx.lifecycle.runtime.ktx)
|
|
|
implementation(libs.androidx.activity.compose)
|
|
|
implementation(platform(libs.androidx.compose.bom))
|
|
|
implementation(libs.androidx.ui)
|
|
|
implementation(libs.androidx.ui.graphics)
|
|
|
implementation(libs.androidx.ui.tooling.preview)
|
|
|
implementation(libs.androidx.material3)
|
|
|
implementation(libs.androidx.media3.exoplayer)
|
|
|
implementation(libs.androidx.media3.ui)
|
|
|
implementation(libs.androidx.media3.common)
|
|
|
implementation(libs.androidx.media3.session)
|
|
|
implementation(libs.androidx.room.runtime)
|
|
|
implementation(libs.com.google.devtools.ksp.gradle.plugin)
|
|
|
implementation(libs.kotlinx.coroutines.android)
|
|
|
implementation(libs.androidx.room.ktx)
|
|
|
|
|
|
ksp(libs.androidx.room.compiler)
|
|
|
|
|
|
annotationProcessor(libs.androidx.room.compiler)
|
|
|
|
|
|
debugImplementation(libs.androidx.ui.tooling)
|
|
|
debugImplementation(libs.androidx.ui.test.manifest)
|
|
|
} |