deps_versions.gradle 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. // retrofit = "com.squareup.retrofit2:retrofit:$retrofitVersion"
  16. // jsr330 = "javax.inject:javax.inject:$jsr330Version"
  17. // DI
  18. dagger = "com.google.dagger:dagger:$daggerVersion"
  19. daggerCompiler = "com.google.dagger:dagger-compiler:$daggerVersion"
  20. // Room
  21. room = "androidx.room:room-runtime:$roomVersion"
  22. roomCompiler = "androidx.room:room-compiler:$roomVersion"
  23. // picasso = "com.squareup.picasso:picasso:$picassoVersion"
  24. // flexLayout = "com.google.android:flexbox:$flexLayoutVersion"
  25. // viewPager2 = "androidx.viewpager2:viewpager2:$viewPager2Version"
  26. // coroutinesDependencies = [
  27. // 'coroutines_core' : "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion",
  28. // 'coroutines_android': "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion"
  29. // ]
  30. //
  31. // material = "com.google.android.material:material:$materialVersion"
  32. // Navigation
  33. navigationFragment = "androidx.navigation:navigation-fragment-ktx:$navigationVersion"
  34. navigationUi = "androidx.navigation:navigation-ui-ktx:$navigationVersion"
  35. // Dynamic Feature Module Support
  36. navigationDynamicFeatures = "androidx.navigation:navigation-dynamic-features-fragment:$navigationVersion"
  37. // Logging
  38. timber = "com.jakewharton.timber:timber:$timberVersion"
  39. // Networking
  40. gson = "com.google.code.gson:gson:$gsonVersion"
  41. retrofit = "com.squareup.retrofit2:retrofit:$retrofitVersion"
  42. converterGson = "com.squareup.retrofit2:converter-gson:$retrofitVersion"
  43. okhttp = "com.squareup.okhttp3:okhttp:$okhttpVersion"
  44. loggingInterceptor = "com.squareup.okhttp3:logging-interceptor:$okhttpVersion"
  45. }