build.gradle 786 B

12345678910111213141516171819202122232425
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. apply plugin: 'com.github.ben-manes.versions'
  3. buildscript {
  4. repositories {
  5. jcenter()
  6. google()
  7. }
  8. dependencies {
  9. classpath 'com.android.tools.build:gradle:3.1.0'
  10. classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
  11. classpath 'com.github.zellius:android-shortcut-gradle-plugin:0.1.2'
  12. // NOTE: Do not place your application dependencies here; they belong
  13. // in the individual module build.gradle files
  14. }
  15. }
  16. allprojects {
  17. repositories {
  18. jcenter()
  19. google()
  20. maven { url "https://jitpack.io" }
  21. maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
  22. }
  23. }