PIbd-33_Abazov_A.A._Mobile_.../app/build.gradle.kts

101 lines
3.2 KiB
Plaintext
Raw Permalink Normal View History

2023-10-08 23:43:47 +04:00
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
2023-11-18 17:26:57 +04:00
id("com.google.devtools.ksp")
2023-12-06 01:39:26 +04:00
id("org.jetbrains.kotlin.plugin.serialization")
2023-10-08 23:43:47 +04:00
}
android {
namespace = "com.example.mobile_labs"
compileSdk = 33
defaultConfig {
applicationId = "com.example.mobile_labs"
2023-12-05 23:31:27 +04:00
minSdk = 30
2023-10-08 23:43:47 +04:00
targetSdk = 33
versionCode = 1
versionName = "1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
useSupportLibrary = true
}
}
buildTypes {
release {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}
compileOptions {
2023-11-18 17:26:57 +04:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
2023-10-08 23:43:47 +04:00
}
kotlinOptions {
2023-11-18 17:26:57 +04:00
jvmTarget = "17"
2023-10-08 23:43:47 +04:00
}
buildFeatures {
compose = true
}
composeOptions {
2023-11-18 17:26:57 +04:00
kotlinCompilerExtensionVersion = "1.4.5"
2023-10-08 23:43:47 +04:00
}
packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
}
}
}
2023-11-18 17:26:57 +04:00
kotlin {
jvmToolchain(17)
}
2023-10-08 23:43:47 +04:00
dependencies {
2023-11-18 17:26:57 +04:00
//Core
2023-10-08 23:43:47 +04:00
implementation("androidx.core:core-ktx:1.9.0")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.2")
2023-11-18 17:26:57 +04:00
//UI
2023-10-08 23:43:47 +04:00
implementation("androidx.activity:activity-compose:1.7.2")
implementation(platform("androidx.compose:compose-bom:2023.03.00"))
implementation("androidx.navigation:navigation-compose:2.6.0")
implementation("io.coil-kt:coil-compose:2.4.0")
2023-10-08 23:43:47 +04:00
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.ui:ui-graphics")
implementation("androidx.compose.ui:ui-tooling-preview")
implementation("androidx.compose.material3:material3:1.1.2")
implementation("androidx.compose.material:material:1.4.3")
2023-11-18 17:26:57 +04:00
// Room
val room_version = "2.5.2"
implementation("androidx.room:room-runtime:$room_version")
annotationProcessor("androidx.room:room-compiler:$room_version")
ksp("androidx.room:room-compiler:$room_version")
implementation("androidx.room:room-ktx:$room_version")
implementation("androidx.room:room-paging:$room_version")
2023-12-05 22:26:05 +04:00
implementation("androidx.paging:paging-compose:3.2.1")
2023-12-06 01:39:26 +04:00
// retrofit
val retrofitVersion = "2.9.0"
implementation("com.squareup.retrofit2:retrofit:$retrofitVersion")
implementation("com.squareup.okhttp3:logging-interceptor:4.11.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1")
implementation("com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter:1.0.0")
2023-11-18 17:26:57 +04:00
//Tests
2023-10-08 23:43:47 +04:00
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
androidTestImplementation(platform("androidx.compose:compose-bom:2023.03.00"))
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
debugImplementation("androidx.compose.ui:ui-tooling")
debugImplementation("androidx.compose.ui:ui-test-manifest")
2023-12-26 23:33:11 +04:00
implementation("javax.inject:javax.inject:1")
implementation("androidx.compose.runtime:runtime-livedata")
2023-10-08 23:43:47 +04:00
}