Rework buildSrc and remove usage of subprojects

This commit is contained in:
AntsyLich
2024-04-06 11:07:11 +06:00
parent aed53d3bdc
commit e448e40406
26 changed files with 262 additions and 155 deletions

View File

@ -1,5 +1,6 @@
plugins {
id("com.android.library")
id("mihon.library")
id("mihon.library.compose")
kotlin("android")
}
@ -10,14 +11,6 @@ android {
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles("consumer-rules.pro")
}
buildFeatures {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = compose.versions.compiler.get()
}
}
dependencies {
@ -25,7 +18,6 @@ dependencies {
api(projects.i18n)
// Compose
implementation(platform(compose.bom))
implementation(compose.activity)
implementation(compose.foundation)
implementation(compose.material3.core)