deps_versions.gradle 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. ext {
  2. // jsr330Version = '1'
  3. daggerVersion = '2.25.2'
  4. roomVersion = '2.1.0'
  5. // picassoVersion = '2.71828'
  6. // flexLayoutVersion = '1.1.1'
  7. // viewPager2Version = '1.0.0-rc01'
  8. // coroutinesVersion = '1.1.1'
  9. // materialVersion = '1.1.0-beta02'
  10. navigationVersion = '2.3.0'
  11. timberVersion = '4.7.1'
  12. retrofitVersion = '2.6.1'
  13. gsonVersion = '2.8.2'
  14. okhttpVersion = '3.10.0'
  15. constraintlayoutVersion = '1.1.3'
  16. cardviewVersion = '1.0.0'
  17. recyclerviewViersion = '1.2.0-alpha05'
  18. materialVersion = '1.2.1'
  19. // retrofit = "com.squareup.retrofit2:retrofit:$retrofitVersion"
  20. // jsr330 = "javax.inject:javax.inject:$jsr330Version"
  21. // DI
  22. dagger = "com.google.dagger:dagger:$daggerVersion"
  23. daggerCompiler = "com.google.dagger:dagger-compiler:$daggerVersion"
  24. // Room
  25. room = "androidx.room:room-runtime:$roomVersion"
  26. roomKtx = "androidx.room:room-ktx:$roomVersion"
  27. roomCompiler = "androidx.room:room-compiler:$roomVersion"
  28. // picasso = "com.squareup.picasso:picasso:$picassoVersion"
  29. // flexLayout = "com.google.android:flexbox:$flexLayoutVersion"
  30. // viewPager2 = "androidx.viewpager2:viewpager2:$viewPager2Version"
  31. // coroutinesDependencies = [
  32. // 'coroutines_core' : "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion",
  33. // 'coroutines_android': "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion"
  34. // ]
  35. //
  36. // material = "com.google.android.material:material:$materialVersion"
  37. // Navigation
  38. navigationFragment = "androidx.navigation:navigation-fragment-ktx:$navigationVersion"
  39. navigationUi = "androidx.navigation:navigation-ui-ktx:$navigationVersion"
  40. // Dynamic Feature Module Support
  41. navigationDynamicFeatures = "androidx.navigation:navigation-dynamic-features-fragment:$navigationVersion"
  42. // Logging
  43. timber = "com.jakewharton.timber:timber:$timberVersion"
  44. // Networking
  45. gson = "com.google.code.gson:gson:$gsonVersion"
  46. retrofit = "com.squareup.retrofit2:retrofit:$retrofitVersion"
  47. converterGson = "com.squareup.retrofit2:converter-gson:$retrofitVersion"
  48. okhttp = "com.squareup.okhttp3:okhttp:$okhttpVersion"
  49. loggingInterceptor = "com.squareup.okhttp3:logging-interceptor:$okhttpVersion"
  50. // UI
  51. constraintlayout = "androidx.constraintlayout:constraintlayout:$constraintlayoutVersion"
  52. cardview = "androidx.cardview:cardview:$cardviewVersion"
  53. recyclerview = "androidx.recyclerview:recyclerview:$recyclerviewViersion"
  54. material = "com.google.android.material:material:$materialVersion"
  55. }