build.gradle.kts 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. plugins {
  2. id("com.android.application")
  3. id("org.jetbrains.kotlin.android")
  4. }
  5. android {
  6. namespace = "com.example.valorantgame"
  7. compileSdk = 34
  8. defaultConfig {
  9. applicationId = "com.example.valorantgame"
  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(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
  20. }
  21. }
  22. compileOptions {
  23. sourceCompatibility = JavaVersion.VERSION_1_8
  24. targetCompatibility = JavaVersion.VERSION_1_8
  25. }
  26. kotlinOptions {
  27. jvmTarget = "1.8"
  28. }
  29. buildFeatures{
  30. viewBinding = true
  31. dataBinding = true
  32. }
  33. }
  34. dependencies {
  35. implementation("androidx.core:core-ktx:1.9.0")
  36. implementation("androidx.appcompat:appcompat:1.6.1")
  37. implementation("com.google.android.material:material:1.8.0")
  38. implementation("androidx.constraintlayout:constraintlayout:2.1.4")
  39. testImplementation("junit:junit:4.13.2")
  40. androidTestImplementation("androidx.test.ext:junit:1.1.5")
  41. androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
  42. implementation("androidx.core:core-ktx:1.12.0")
  43. implementation("androidx.appcompat:appcompat:1.6.1")
  44. implementation("com.google.android.material:material:1.10.0")
  45. implementation("androidx.constraintlayout:constraintlayout:2.1.4")
  46. implementation("com.squareup.picasso:picasso:2.71828")
  47. implementation("com.squareup.picasso:picasso:2.71828")
  48. implementation("com.squareup.picasso:picasso:2.71828")
  49. implementation("androidx.legacy:legacy-support-v4:1.0.0")
  50. testImplementation("junit:junit:4.13.2")
  51. androidTestImplementation("androidx.test.ext:junit:1.1.5")
  52. androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
  53. implementation("androidx.recyclerview:recyclerview:1.2.1")
  54. implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.4.1")
  55. implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1")
  56. implementation("io.coil-kt:coil:2.3.0")
  57. /*Retrofit — это REST клиент для Java и Android.
  58. Он позволяет легко получить и загрузить JSON (или другие структурированные данные)
  59. через веб-сервис на основе REST.*/
  60. implementation("com.squareup.retrofit2:retrofit:2.9.0")
  61. implementation("com.squareup.retrofit2:converter-gson:2.5.0")
  62. //Для сериализации JSONP в JSON
  63. implementation("com.squareup.retrofit2:converter-scalars:2.1.0")
  64. //OkHttp — библиотека и по совместительству HTTP‑клиент
  65. implementation("com.squareup.okhttp3:logging-interceptor:4.10.0")
  66. //Для закругления ImageView
  67. implementation("com.makeramen:roundedimageview:2.3.0")
  68. }