build.gradle 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. plugins {
  2. id 'com.android.application'
  3. id 'org.jetbrains.kotlin.android'
  4. }
  5. android {
  6. compileSdk 32
  7. defaultConfig {
  8. applicationId "com.ethosa.ktc"
  9. minSdk 21
  10. targetSdk 32
  11. versionCode 1
  12. versionName "0.2.0"
  13. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. compileOptions {
  22. sourceCompatibility JavaVersion.VERSION_1_8
  23. targetCompatibility JavaVersion.VERSION_1_8
  24. }
  25. kotlinOptions {
  26. jvmTarget = '1.8'
  27. }
  28. buildFeatures {
  29. viewBinding true
  30. }
  31. }
  32. dependencies {
  33. implementation 'androidx.core:core-ktx:1.7.0'
  34. implementation 'androidx.appcompat:appcompat:1.4.1'
  35. implementation 'com.google.android.material:material:1.5.0'
  36. implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
  37. implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.4.1'
  38. implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'
  39. implementation 'androidx.navigation:navigation-fragment-ktx:2.4.1'
  40. implementation 'androidx.navigation:navigation-ui-ktx:2.4.1'
  41. implementation 'com.squareup.okhttp3:okhttp:4.9.0'
  42. implementation 'com.google.code.gson:gson:2.8.9'
  43. implementation 'com.github.bumptech.glide:glide:4.12.0'
  44. implementation 'jp.wasabeef:glide-transformations:4.3.0'
  45. implementation 'com.squareup.picasso:picasso:2.71828'
  46. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  47. implementation 'androidx.preference:preference:1.2.0'
  48. testImplementation 'junit:junit:4.13.2'
  49. androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  50. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  51. implementation project(':shared')
  52. }