deps_versions.gradle 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. // DI
  28. dagger = "com.google.dagger:dagger:$daggerVersion"
  29. daggerCompiler = "com.google.dagger:dagger-compiler:$daggerVersion"
  30. // Room
  31. room = "androidx.room:room-runtime:$roomVersion"
  32. roomKtx = "androidx.room:room-ktx:$roomVersion"
  33. roomCompiler = "androidx.room:room-compiler:$roomVersion"
  34. roomCoroutines = "androidx.room:room-coroutines:$roomVersion"
  35. // Navigation
  36. navigationFragment = "androidx.navigation:navigation-fragment-ktx:$navigationVersion"
  37. navigationUi = "androidx.navigation:navigation-ui-ktx:$navigationVersion"
  38. // Dynamic Feature Module Support
  39. navigationDynamicFeatures = "androidx.navigation:navigation-dynamic-features-fragment:$navigationVersion"
  40. // Logging
  41. timber = "com.jakewharton.timber:timber:$timberVersion"
  42. // Networking
  43. gson = "com.google.code.gson:gson:$gsonVersion"
  44. retrofit = "com.squareup.retrofit2:retrofit:$retrofitVersion"
  45. converterGson = "com.squareup.retrofit2:converter-gson:$retrofitVersion"
  46. okhttp = "com.squareup.okhttp3:okhttp:$okhttpVersion"
  47. loggingInterceptor = "com.squareup.okhttp3:logging-interceptor:$okhttpVersion"
  48. // UI
  49. constraintlayout = "androidx.constraintlayout:constraintlayout:$constraintlayoutVersion"
  50. cardview = "androidx.cardview:cardview:$cardviewVersion"
  51. recyclerview = "androidx.recyclerview:recyclerview:$recyclerviewViersion"
  52. material = "com.google.android.material:material:$materialVersion"
  53. // Livecycle
  54. lifecycleExtensions = "androidx.lifecycle:lifecycle-extensions:$lifecycleVersion"
  55. lifecycleLivedata = "androidx.lifecycle:lifecycle-livedata-ktx:$lifecycleVersion"
  56. lifecycleViewmodel = "androidx.lifecycle:lifecycle-viewmodel-ktx:$lifecycleVersion"
  57. // Testing
  58. junit = "junit:junit:$junitVersion"
  59. mockitoCore = "org.mockito:mockito-core:$mockitoCoreVersion"
  60. kotlinxCoroutinesTest = "org.jetbrains.kotlinx:kotlinx-coroutines-test:$kotlinxCoroutinesTestVersion"
  61. junitInstrumental = "androidx.test.ext:junit:$junitInstrumentalVersion"
  62. espressoCore = "androidx.test.espresso:espresso-core:$espressoCoreVersion"
  63. androidXRunnerTest = "androidx.test:runner:$androidXTestVersion"
  64. androidXRulesTest = "androidx.test:rules:$androidXTestVersion"
  65. robolectric = "org.robolectric:robolectric:$robolectricVersion"
  66. androidXCoreTest = "androidx.arch.core:core-testing:$androidXCoreTestVersion"
  67. androidXFragmentTest = "androidx.fragment:fragment-testing:$androidXTestVersion"
  68. // Support Library AndroidX
  69. legacySupport = "androidx.legacy:legacy-support-v4:$legacySupportVersion"
  70. appCompat = "androidx.appcompat:appcompat:$appCompatVersion"
  71. androidxCore = "androidx.core:core-ktx:$androidxCoreVersion"
  72. // Kotlin
  73. kotlinStdlib = "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
  74. //Crytpo
  75. securityCrypto = "androidx.security:security-crypto:$securityCryptoVersion"
  76. //Coil
  77. coil = "io.coil-kt:coil:$coilVersion"
  78. coilBase = "io.coil-kt:coil-base:$coilVersion"
  79. coilSvg = "io.coil-kt:coil-svg:$coilVersion"
  80. }