deps_versions.gradle 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. ext {
  2. daggerVersion = '2.25.2'
  3. roomVersion = '2.2.0'
  4. navigationVersion = '2.3.0'
  5. timberVersion = '4.7.1'
  6. retrofitVersion = '2.6.1'
  7. gsonVersion = '2.8.2'
  8. okhttpVersion = '3.10.0'
  9. constraintlayoutVersion = '1.1.3'
  10. cardviewVersion = '1.0.0'
  11. recyclerviewViersion = '1.2.0-alpha05'
  12. materialVersion = '1.2.1'
  13. lifecycleVersion = '2.3.0-alpha07'
  14. junitVersion = "4.12"
  15. mockitoCoreVersion = "2.28.2"
  16. kotlinxCoroutinesTestVersion = "1.3.1"
  17. junitInstrumentalVersion = "1.1.1"
  18. espressoCoreVersion = "3.2.0"
  19. legacySupportVersion = "1.0.0"
  20. appCompatVersion = "1.2.0"
  21. androidxCoreVersion = "1.3.1"
  22. robolectricVersion = "4.4"
  23. androidXCoreTestVersion = "2.1.0"
  24. androidXTestVersion = "1.1.0"
  25. securityCryptoVersion = "1.1.0-alpha02"
  26. coilVersion = "1.0.0"
  27. viewpager2Version = "1.0.0"
  28. // DI
  29. dagger = "com.google.dagger:dagger:$daggerVersion"
  30. daggerCompiler = "com.google.dagger:dagger-compiler:$daggerVersion"
  31. // Room
  32. room = "androidx.room:room-runtime:$roomVersion"
  33. roomKtx = "androidx.room:room-ktx:$roomVersion"
  34. roomCompiler = "androidx.room:room-compiler:$roomVersion"
  35. roomCoroutines = "androidx.room:room-coroutines:$roomVersion"
  36. // Navigation
  37. navigationFragment = "androidx.navigation:navigation-fragment-ktx:$navigationVersion"
  38. navigationUi = "androidx.navigation:navigation-ui-ktx:$navigationVersion"
  39. // Dynamic Feature Module Support
  40. navigationDynamicFeatures = "androidx.navigation:navigation-dynamic-features-fragment:$navigationVersion"
  41. // Logging
  42. timber = "com.jakewharton.timber:timber:$timberVersion"
  43. // Networking
  44. gson = "com.google.code.gson:gson:$gsonVersion"
  45. retrofit = "com.squareup.retrofit2:retrofit:$retrofitVersion"
  46. converterGson = "com.squareup.retrofit2:converter-gson:$retrofitVersion"
  47. okhttp = "com.squareup.okhttp3:okhttp:$okhttpVersion"
  48. loggingInterceptor = "com.squareup.okhttp3:logging-interceptor:$okhttpVersion"
  49. // UI
  50. constraintlayout = "androidx.constraintlayout:constraintlayout:$constraintlayoutVersion"
  51. cardview = "androidx.cardview:cardview:$cardviewVersion"
  52. recyclerview = "androidx.recyclerview:recyclerview:$recyclerviewViersion"
  53. material = "com.google.android.material:material:$materialVersion"
  54. viewpager2 = "androidx.viewpager2:viewpager2:$viewpager2Version"
  55. // Livecycle
  56. lifecycleExtensions = "androidx.lifecycle:lifecycle-extensions:$lifecycleVersion"
  57. lifecycleLivedata = "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycleVersion"
  58. lifecycleViewmodel = "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycleVersion"
  59. // Testing
  60. junit = "junit:junit:$junitVersion"
  61. mockitoCore = "org.mockito:mockito-core:$mockitoCoreVersion"
  62. kotlinxCoroutinesTest = "org.jetbrains.kotlinx:kotlinx-coroutines-test:$kotlinxCoroutinesTestVersion"
  63. junitInstrumental = "androidx.test.ext:junit:$junitInstrumentalVersion"
  64. espressoCore = "androidx.test.espresso:espresso-core:$espressoCoreVersion"
  65. androidXRunnerTest = "androidx.test:runner:$androidXTestVersion"
  66. androidXRulesTest = "androidx.test:rules:$androidXTestVersion"
  67. robolectric = "org.robolectric:robolectric:$robolectricVersion"
  68. androidXCoreTest = "androidx.arch.core:core-testing:$androidXCoreTestVersion"
  69. androidXFragmentTest = "androidx.fragment:fragment-testing:$androidXTestVersion"
  70. // Support Library AndroidX
  71. legacySupport = "androidx.legacy:legacy-support-v4:$legacySupportVersion"
  72. appCompat = "androidx.appcompat:appcompat:$appCompatVersion"
  73. androidxCore = "androidx.core:core-ktx:$androidxCoreVersion"
  74. // Kotlin
  75. kotlinStdlib = "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
  76. //Crytpo
  77. securityCrypto = "androidx.security:security-crypto:$securityCryptoVersion"
  78. //Coil
  79. coil = "io.coil-kt:coil:$coilVersion"
  80. coilBase = "io.coil-kt:coil-base:$coilVersion"
  81. coilSvg = "io.coil-kt:coil-svg:$coilVersion"
  82. }