build.gradle 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 17
  12. versionName "0.8.6"
  13. ndk {
  14. abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'
  15. }
  16. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  17. }
  18. buildTypes {
  19. release {
  20. minifyEnabled false
  21. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  22. }
  23. }
  24. compileOptions {
  25. sourceCompatibility JavaVersion.VERSION_1_8
  26. targetCompatibility JavaVersion.VERSION_1_8
  27. }
  28. kotlinOptions {
  29. jvmTarget = '1.8'
  30. }
  31. buildFeatures {
  32. viewBinding true
  33. }
  34. }
  35. dependencies {
  36. implementation 'androidx.core:core-ktx:1.7.0'
  37. implementation 'androidx.appcompat:appcompat:1.4.1'
  38. implementation 'com.google.android.material:material:1.5.0'
  39. implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
  40. implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.4.1'
  41. implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1'
  42. implementation 'androidx.navigation:navigation-fragment-ktx:2.4.2'
  43. implementation 'androidx.navigation:navigation-ui-ktx:2.4.2'
  44. implementation 'com.squareup.okhttp3:okhttp:4.9.0'
  45. implementation 'com.google.code.gson:gson:2.8.9'
  46. implementation 'com.github.bumptech.glide:glide:4.12.0'
  47. implementation 'jp.wasabeef:glide-transformations:4.3.0'
  48. implementation 'com.squareup.picasso:picasso:2.71828'
  49. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  50. implementation 'androidx.preference:preference:1.2.0'
  51. implementation 'androidx.webkit:webkit:1.4.0'
  52. testImplementation 'junit:junit:4.13.2'
  53. androidTestImplementation 'androidx.test.ext:junit:1.1.3'
  54. androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
  55. implementation project(':shared')
  56. }