2026-04-29 16:31:04 +03:30
|
|
|
plugins {
|
|
|
|
|
alias(libs.plugins.android.library)
|
|
|
|
|
alias(libs.plugins.kotlin.compose)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
namespace = "com.example.design_system"
|
|
|
|
|
compileSdk {
|
|
|
|
|
version = release(36) {
|
|
|
|
|
minorApiLevel = 1
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
|
minSdk = 24
|
|
|
|
|
|
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
|
consumerProguardFiles("consumer-rules.pro")
|
|
|
|
|
}
|
|
|
|
|
compileOptions {
|
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
|
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buildFeatures {
|
|
|
|
|
compose = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
implementation(platform(libs.androidx.compose.bom))
|
|
|
|
|
implementation(libs.androidx.activity.compose)
|
|
|
|
|
implementation(libs.androidx.compose.material3)
|
|
|
|
|
implementation(libs.androidx.compose.ui)
|
|
|
|
|
implementation(libs.androidx.compose.ui.graphics)
|
|
|
|
|
implementation(libs.androidx.compose.ui.tooling.preview)
|
|
|
|
|
implementation(libs.androidx.core.ktx)
|
|
|
|
|
implementation(libs.androidx.lifecycle.runtime.ktx)
|
2026-05-06 23:33:56 +03:30
|
|
|
implementation(libs.retrofit.converter.gson)
|
2026-04-29 16:31:04 +03:30
|
|
|
testImplementation(libs.junit)
|
|
|
|
|
androidTestImplementation(platform(libs.androidx.compose.bom))
|
|
|
|
|
androidTestImplementation(libs.androidx.compose.ui.test.junit4)
|
|
|
|
|
androidTestImplementation(libs.androidx.espresso.core)
|
|
|
|
|
androidTestImplementation(libs.androidx.junit)
|
|
|
|
|
debugImplementation(libs.androidx.compose.ui.test.manifest)
|
|
|
|
|
debugImplementation(libs.androidx.compose.ui.tooling)
|
2026-05-06 23:33:56 +03:30
|
|
|
|
|
|
|
|
implementation(project(":core"))
|
2026-04-29 16:31:04 +03:30
|
|
|
}
|