Нормальная модульная структура

This commit is contained in:
Roman Pytkov
2026-03-02 16:12:47 +03:00
parent 664b04e698
commit 7870987274
38 changed files with 381 additions and 49 deletions

View File

@@ -35,11 +35,11 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
}
buildFeatures {
compose = true
@@ -81,6 +81,7 @@ dependencies {
androidTestImplementation(platform(libs.androidx.compose.bom))
androidTestImplementation(libs.androidx.ui.test.junit4)
implementation(project(":data"))
implementation(project(":domain"))
implementation(project(":presentation"))
runtimeOnly(project(":data"))
}