Coffee_Preorder/app/build.gradle.kts

95 lines
3.0 KiB
Plaintext
Raw Normal View History

2023-10-15 20:54:08 +04:00
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
2023-10-28 23:22:11 +04:00
id("com.google.devtools.ksp")
2023-10-15 20:54:08 +04:00
}
android {
namespace = "com.zyzf.coffeepreorder"
compileSdk = 34
defaultConfig {
applicationId = "com.zyzf.coffeepreorder"
minSdk = 24
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-10-28 23:22:11 +04:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
2023-10-15 20:54:08 +04:00
}
kotlinOptions {
2023-10-28 23:22:11 +04:00
jvmTarget = "17"
2023-10-15 20:54:08 +04:00
}
buildFeatures {
compose = true
}
composeOptions {
2023-12-03 18:03:39 +04:00
kotlinCompilerExtensionVersion = "1.5.5"
2023-10-15 20:54:08 +04:00
}
packaging {
resources {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
}
}
}
2023-10-28 23:22:11 +04:00
kotlin {
2023-12-04 01:52:39 +04:00
jvmToolchain( 17)
2023-10-28 23:22:11 +04:00
}
2023-10-15 20:54:08 +04:00
2023-10-28 23:22:11 +04:00
dependencies {
2023-12-04 01:52:39 +04:00
// Retrofit
implementation("com.jakewharton.retrofit:retrofit2-kotlinx-serialization-converter:1.0.0")
implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation("io.coil-kt:coil-compose:2.5.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.2")
implementation("com.jcraft:jsch:0.1.55")
2023-10-28 23:22:11 +04:00
// Core
2023-10-15 20:54:08 +04:00
implementation("androidx.core:core-ktx:1.12.0")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.2")
2023-10-28 23:22:11 +04:00
// UI
2023-11-16 20:52:35 +04:00
implementation("androidx.activity:activity-compose:1.8.1")
2023-10-28 23:22:11 +04:00
implementation(platform("androidx.compose:compose-bom:2023.10.01"))
2023-11-16 20:52:35 +04:00
implementation("androidx.navigation:navigation-compose:2.7.5")
2023-12-03 18:03:39 +04:00
implementation("androidx.compose.ui:ui:1.6.0-beta02")
implementation("androidx.compose.ui:ui-graphics:1.6.0-beta02")
implementation("androidx.compose.ui:ui-tooling-preview:1.6.0-beta02")
2023-12-04 01:52:39 +04:00
implementation("androidx.compose.material3:material3:1.1.2")
2023-10-28 23:22:11 +04:00
// Room
2023-12-04 01:52:39 +04:00
val room_version = "2.6.1"
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-10-28 23:22:11 +04:00
// Tests
2023-10-15 20:54:08 +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")
2023-10-28 23:22:11 +04:00
androidTestImplementation(platform("androidx.compose:compose-bom:2023.10.01"))
2023-12-03 18:03:39 +04:00
androidTestImplementation("androidx.compose.ui:ui-test-junit4:1.6.0-beta02")
debugImplementation("androidx.compose.ui:ui-tooling:1.6.0-beta02")
debugImplementation("androidx.compose.ui:ui-test-manifest:1.6.0-beta02")
2023-10-15 20:54:08 +04:00
}