build.gradle.kts 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. plugins {
  2. id("com.android.application")
  3. id("org.jetbrains.kotlin.android")
  4. }
  5. android {
  6. namespace = "com.example.smartlab"
  7. compileSdk = 34
  8. defaultConfig {
  9. applicationId = "com.example.smartlab"
  10. minSdk = 24
  11. targetSdk = 34
  12. versionCode = 1
  13. versionName = "1.0"
  14. testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
  15. }
  16. buildTypes {
  17. release {
  18. isMinifyEnabled = false
  19. proguardFiles(
  20. getDefaultProguardFile("proguard-android-optimize.txt"),
  21. "proguard-rules.pro"
  22. )
  23. }
  24. }
  25. compileOptions {
  26. sourceCompatibility = JavaVersion.VERSION_1_8
  27. targetCompatibility = JavaVersion.VERSION_1_8
  28. }
  29. kotlinOptions {
  30. jvmTarget = "1.8"
  31. }
  32. buildFeatures{
  33. viewBinding = true
  34. dataBinding = true
  35. }
  36. }
  37. dependencies {
  38. implementation("androidx.core:core-ktx:1.12.0")
  39. implementation("androidx.appcompat:appcompat:1.6.1")
  40. implementation("com.google.android.material:material:1.10.0")
  41. implementation("androidx.constraintlayout:constraintlayout:2.1.4")
  42. implementation("androidx.games:games-activity:2.0.2")
  43. implementation("androidx.legacy:legacy-support-v4:1.0.0")
  44. testImplementation("junit:junit:4.13.2")
  45. androidTestImplementation("androidx.test.ext:junit:1.1.5")
  46. androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
  47. implementation("androidx.recyclerview:recyclerview:1.2.1")
  48. implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.4.1")
  49. implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1")
  50. implementation("io.coil-kt:coil:2.3.0")
  51. /*Retrofit — это REST клиент для Java и Android.
  52. Он позволяет легко получить и загрузить JSON (или другие структурированные данные)
  53. через веб-сервис на основе REST.*/
  54. implementation("com.squareup.retrofit2:retrofit:2.9.0")
  55. implementation("com.squareup.retrofit2:converter-gson:2.5.0")
  56. //Для сериализации JSONP в JSON
  57. implementation("com.squareup.retrofit2:converter-scalars:2.1.0")
  58. //OkHttp — библиотека и по совместительству HTTP‑клиент
  59. implementation("com.squareup.okhttp3:logging-interceptor:4.10.0")
  60. //Для закругления ImageView
  61. implementation("com.makeramen:roundedimageview:2.3.0")
  62. //Add swipe-to-refresh
  63. implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.2.0-alpha01")
  64. }