2021-09-18 23:37:52 +02:00
|
|
|
plugins {
|
2023-10-05 21:51:48 +02:00
|
|
|
alias(libs.plugins.android.library)
|
|
|
|
|
alias(libs.plugins.kotlin.android)
|
2023-12-07 22:44:41 +01:00
|
|
|
alias(libs.plugins.kotlin.plugin.serialization)
|
2021-09-18 23:37:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
android {
|
2023-10-05 21:51:48 +02:00
|
|
|
compileSdk = libs.versions.compileSdk.get().toInt()
|
2021-09-18 23:37:52 +02:00
|
|
|
|
|
|
|
|
defaultConfig {
|
2023-10-05 21:51:48 +02:00
|
|
|
minSdk = libs.versions.minSdk.get().toInt()
|
|
|
|
|
|
2021-09-18 23:37:52 +02:00
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
|
release {
|
|
|
|
|
proguardFiles(
|
|
|
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
|
|
|
"proguard-rules.pro"
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
|
}
|
2022-05-09 19:56:05 +02:00
|
|
|
namespace = "de.mm20.launcher2.badges"
|
2021-09-18 23:37:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation(libs.bundles.kotlin)
|
|
|
|
|
implementation(libs.androidx.core)
|
|
|
|
|
implementation(libs.androidx.appcompat)
|
|
|
|
|
|
|
|
|
|
implementation(libs.bundles.androidx.lifecycle)
|
|
|
|
|
|
2021-10-10 12:15:54 +02:00
|
|
|
implementation(libs.koin.android)
|
|
|
|
|
|
2022-12-13 17:37:26 +01:00
|
|
|
implementation(project(":core:ktx"))
|
|
|
|
|
implementation(project(":data:applications"))
|
|
|
|
|
implementation(project(":data:appshortcuts"))
|
|
|
|
|
implementation(project(":data:notifications"))
|
|
|
|
|
implementation(project(":core:preferences"))
|
|
|
|
|
implementation(project(":core:base"))
|
|
|
|
|
implementation(project(":data:files"))
|
2024-05-03 23:50:34 +02:00
|
|
|
implementation(project(":data:searchable"))
|
2021-09-18 23:37:52 +02:00
|
|
|
}
|