Advertisement
MisterT

Untitled

May 23rd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2.  
  3. buildscript {
  4. repositories {
  5. jcenter()
  6. maven {
  7. url 'https://maven.google.com/'
  8. name 'Google'
  9. }
  10. mavenCentral() // add repository
  11. }
  12. dependencies {
  13. classpath 'com.android.tools.build:gradle:2.3.2'
  14. classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2' // add plugin
  15. // NOTE: Do not place your application dependencies here; they belong
  16. // in the individual module build.gradle files
  17. }
  18. }
  19.  
  20. allprojects {
  21. repositories {
  22. jcenter()
  23. maven { url "https://jitpack.io" }
  24. // maven {
  25. // url 'https://maven.google.com/'
  26. // name 'Google'
  27. // }
  28. maven {
  29. url 'https://maven.google.com/'
  30. name 'Google'
  31. }
  32. }
  33. }
  34.  
  35. task clean(type: Delete) {
  36. delete rootProject.buildDir
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement