mirror of
https://github.com/emptyynes/EmptyPlayer.git
synced 2025-01-06 16:42:27 +03:00
70 lines
No EOL
1.9 KiB
Text
70 lines
No EOL
1.9 KiB
Text
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"
|
||
}
|
||
|
||
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)
|
||
|
||
debugImplementation(libs.androidx.ui.tooling)
|
||
debugImplementation(libs.androidx.ui.test.manifest)
|
||
} |