Some checks failed
Deploy static content to Pages / deploy (push) Has been cancelled
59 lines
1.5 KiB
Plaintext
59 lines
1.5 KiB
Plaintext
plugins {
|
|
alias(libs.plugins.android.library)
|
|
alias(libs.plugins.kotlin.android)
|
|
}
|
|
|
|
android {
|
|
compileSdk = libs.versions.compileSdk.get().toInt()
|
|
|
|
defaultConfig {
|
|
minSdk = libs.versions.minSdk.get().toInt()
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
//consumerProguardFiles("consumer-rules.pro")
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = false
|
|
isShrinkResources = false
|
|
// proguardFiles(
|
|
// getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
// "proguard-rules.pro"
|
|
// )
|
|
}
|
|
debug {
|
|
isMinifyEnabled = false
|
|
isShrinkResources = false
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
}
|
|
namespace = "de.mm20.launcher2.applications"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(libs.bundles.kotlin)
|
|
implementation(libs.androidx.core)
|
|
implementation(libs.androidx.appcompat)
|
|
implementation(libs.androidx.compose.materialicons)
|
|
|
|
implementation(libs.bundles.androidx.lifecycle)
|
|
|
|
implementation(libs.koin.android)
|
|
|
|
implementation(libs.commons.text)
|
|
|
|
implementation(project(":core:base"))
|
|
implementation(project(":core:ktx"))
|
|
implementation(project(":core:compat"))
|
|
implementation(project(":core:profiles"))
|
|
|
|
} |