Mobile_PIbd-31_Balberova_D.N./app/build.gradle.kts

103 lines
3.5 KiB
Plaintext
Raw Normal View History

2023-09-19 09:51:02 +04:00
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
2023-12-05 14:48:15 +04:00
id("com.google.devtools.ksp")
2023-12-05 15:31:10 +04:00
id("org.jetbrains.kotlin.plugin.serialization")
2023-09-19 09:51:02 +04:00
}
android {
namespace = "com.example.myapplication"
compileSdk = 33
defaultConfig {
applicationId = "com.example.myapplication"
2023-12-05 15:29:15 +04:00
minSdk = 26
2023-09-19 09:51:02 +04:00
targetSdk = 33
versionCode = 1
versionName = "1.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
useSupportLibrary = true
}
}
buildTypes {
release {
isMinifyEnabled = false
2023-12-05 14:48:15 +04:00
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
2023-09-19 09:51:02 +04:00
}
}
compileOptions {
2023-12-05 15:29:15 +04:00
isCoreLibraryDesugaringEnabled = true
2023-12-05 14:48:15 +04:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
2023-09-19 09:51:02 +04:00
}
kotlinOptions {
2023-12-05 14:48:15 +04:00
jvmTarget = "17"
2023-09-19 09:51:02 +04:00
}
buildFeatures {
compose = true
}
composeOptions {
2023-12-05 14:48:15 +04:00
kotlinCompilerExtensionVersion = "1.4.5"
2023-09-19 09:51:02 +04:00
}
packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
}
}
2023-12-13 19:12:51 +04:00
buildToolsVersion = "34.0.0"
2023-09-19 09:51:02 +04:00
}
dependencies {
2023-12-05 15:29:15 +04:00
implementation("org.threeten:threetenbp:1.5.0")
2023-12-05 14:48:15 +04:00
implementation("androidx.datastore:datastore-preferences:1.0.0")
2023-12-05 15:29:15 +04:00
implementation("io.github.vanpra.compose-material-dialogs:datetime:0.8.1-rc")
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:1.1.6")
2023-12-13 19:12:51 +04:00
// LiveData
implementation("androidx.compose.runtime:runtime-livedata:1.5.4")
2023-12-05 14:48:15 +04:00
// Core
2023-09-19 09:51:02 +04:00
implementation("androidx.core:core-ktx:1.9.0")
2023-12-05 14:48:15 +04:00
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.2")
// UI
implementation("androidx.activity:activity-compose:1.7.2")
2023-09-19 09:51:02 +04:00
implementation(platform("androidx.compose:compose-bom:2023.03.00"))
2023-12-05 14:48:15 +04:00
implementation("androidx.navigation:navigation-compose:2.6.0")
2023-09-19 09:51:02 +04:00
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.ui:ui-graphics")
implementation("androidx.compose.ui:ui-tooling-preview")
2023-12-05 15:29:15 +04:00
implementation("androidx.compose.material3:material3:1.1.2")
2023-12-05 15:31:10 +04:00
implementation("androidx.compose.material:material:1.4.3")
2023-12-05 14:48:15 +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 15:31:10 +04:00
// retrofit
val retrofitVersion = "2.9.0"
implementation("com.squareup.retrofit2:retrofit:$retrofitVersion")
implementation("com.squareup.okhttp3:logging-interceptor:4.11.0")
implementation("androidx.paging:paging-compose:3.2.1")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1")
implementation("com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter:1.0.0")
2023-12-05 14:48:15 +04:00
// Tests
2023-09-19 09:51:02 +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")
}