build.gradle 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. compileSdkVersion 31
  6. buildToolsVersion "30.0.3"
  7. buildFeatures {
  8. viewBinding true
  9. }
  10. defaultConfig {
  11. applicationId "com.ethosa.ktc_app"
  12. minSdkVersion 21
  13. targetSdkVersion 31
  14. versionCode 1
  15. versionName "0.4.3"
  16. }
  17. buildTypes {
  18. release {
  19. minifyEnabled false
  20. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  21. }
  22. }
  23. compileOptions {
  24. sourceCompatibility JavaVersion.VERSION_1_8
  25. targetCompatibility JavaVersion.VERSION_1_8
  26. }
  27. }
  28. dependencies {
  29. // UI
  30. implementation 'androidx.appcompat:appcompat:1.3.1'
  31. implementation 'androidx.constraintlayout:constraintlayout:2.1.1'
  32. implementation 'androidx.navigation:navigation-fragment:2.4.0-alpha10'
  33. implementation 'androidx.navigation:navigation-ui:2.4.0-alpha10'
  34. implementation 'androidx.recyclerview:recyclerview:1.2.1'
  35. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  36. // Tools
  37. implementation 'com.google.code.gson:gson:2.8.6'
  38. implementation 'com.squareup.picasso:picasso:2.5.2'
  39. // Requests
  40. implementation 'org.jsoup:jsoup:1.14.2'
  41. implementation 'com.squareup.okhttp3:okhttp:5.0.0-alpha.2'
  42. }