build.gradle.kts 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. plugins {
  2. id("com.android.application")
  3. id("org.jetbrains.kotlin.android")
  4. }
  5. android {
  6. namespace = "com.example.smartladhedgehog"
  7. compileSdk = 34
  8. defaultConfig {
  9. applicationId = "com.example.smartladhedgehog"
  10. minSdk = 24
  11. targetSdk = 34
  12. versionCode = 1
  13. versionName = "1.0"
  14. testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
  15. vectorDrawables {
  16. useSupportLibrary = true
  17. }
  18. }
  19. buildTypes {
  20. release {
  21. isMinifyEnabled = false
  22. proguardFiles(
  23. getDefaultProguardFile("proguard-android-optimize.txt"),
  24. "proguard-rules.pro"
  25. )
  26. }
  27. }
  28. compileOptions {
  29. sourceCompatibility = JavaVersion.VERSION_1_8
  30. targetCompatibility = JavaVersion.VERSION_1_8
  31. }
  32. kotlinOptions {
  33. jvmTarget = "1.8"
  34. }
  35. buildFeatures {
  36. compose = true
  37. }
  38. composeOptions {
  39. kotlinCompilerExtensionVersion = "1.5.1"
  40. }
  41. packaging {
  42. resources {
  43. excludes += "/META-INF/{AL2.0,LGPL2.1}"
  44. }
  45. }
  46. }
  47. dependencies {
  48. implementation("androidx.core:core-ktx:1.10.1")
  49. implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.1")
  50. implementation("androidx.activity:activity-compose:1.7.0")
  51. implementation(platform("androidx.compose:compose-bom:2023.08.00"))
  52. implementation("androidx.compose.ui:ui")
  53. implementation("androidx.compose.ui:ui-graphics")
  54. implementation("androidx.compose.ui:ui-tooling-preview")
  55. implementation("androidx.compose.material3:material3")
  56. implementation("androidx.navigation:navigation-runtime-ktx:2.7.7")
  57. implementation("com.squareup.retrofit2:retrofit:2.9.0")
  58. implementation("com.squareup.retrofit2:converter-gson:2.9.0")
  59. implementation("com.squareup.okhttp3:okhttp:4.11.0")
  60. implementation("com.squareup.okhttp3:logging-interceptor:4.10.0")
  61. implementation("io.coil-kt:coil-compose:2.4.0")
  62. implementation("com.squareup.retrofit2:converter-scalars:2.9.0")
  63. implementation("androidx.navigation:navigation-compose:2.7.7")
  64. testImplementation("junit:junit:4.13.2")
  65. androidTestImplementation("androidx.test.ext:junit:1.1.5")
  66. androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
  67. androidTestImplementation(platform("androidx.compose:compose-bom:2023.08.00"))
  68. androidTestImplementation("androidx.compose.ui:ui-test-junit4")
  69. debugImplementation("androidx.compose.ui:ui-tooling")
  70. debugImplementation("androidx.compose.ui:ui-test-manifest")
  71. }