dependencies.gradle 727 B

1234567891011121314151617181920212223242526272829
  1. ext.versions = [
  2. // Project
  3. minSdk : 16,
  4. compileSdk : 28,
  5. buildTools : '28.0.3',
  6. publishVersion : '3.0.0-alpha3',
  7. publishVersionCode : 245,
  8. // Plugins
  9. gradlePlugin : '3.4.0',
  10. spotlessPlugin : '3.22.0',
  11. versionPlugin : '0.21.0',
  12. bintrayPlugin : '0.9.1',
  13. // AndroidX
  14. androidxCore : '1.0.2',
  15. androidxAnnotation : '1.0.2',
  16. androidxRecyclerView: '1.0.0',
  17. androidxMaterial : '1.0.0',
  18. lifecycle : '2.0.0',
  19. // Kotlin
  20. kotlin : '1.3.31',
  21. coroutines : '1.2.1',
  22. // afollestad
  23. assent : '2.3.0',
  24. dotsIndicator : '1.0.0'
  25. ]