mirror of
https://github.com/oxyroid/M3UAndroid.git
synced 2025-08-06 14:59:48 +08:00
36 lines
939 B
Plaintext
36 lines
939 B
Plaintext
plugins {
|
|
alias(libs.plugins.com.android.library)
|
|
alias(libs.plugins.org.jetbrains.kotlin.android)
|
|
alias(libs.plugins.com.google.devtools.ksp)
|
|
alias(libs.plugins.com.google.dagger.hilt.android)
|
|
alias(libs.plugins.compose.compiler)
|
|
}
|
|
|
|
android {
|
|
namespace = "com.m3u.business.playlist.configuration"
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
buildFeatures {
|
|
compose = true
|
|
}
|
|
packaging {
|
|
resources.excludes += "META-INF/**"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core"))
|
|
implementation(project(":data"))
|
|
|
|
implementation(libs.androidx.core.ktx)
|
|
|
|
implementation(libs.androidx.lifecycle.runtime.ktx)
|
|
implementation(libs.androidx.lifecycle.runtime.compose)
|
|
|
|
implementation(libs.google.dagger.hilt)
|
|
implementation(libs.androidx.hilt.navigation.compose)
|
|
ksp(libs.google.dagger.hilt.compiler)
|
|
|
|
implementation(libs.androidx.work.runtime.ktx)
|
|
} |