Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. ext {
  3. kotlinVersion = '1.3.50'
  4. appCompatVersion = '1.1.0'
  5. coreKTXVersion = '1.1.0'
  6.  
  7. constraintLayoutVersion = "1.1.3"
  8. materialVersion = '1.0.0'
  9. recyclerViewVersion = '1.0.0'
  10. glideVersion = '4.10.0'
  11.  
  12. androidXVersion = '1.0.0'
  13. androidXAnnotations = '1.1.0'
  14.  
  15. junitVersion = '4.12'
  16. runnerVersion = '1.2.0'
  17. espressoVersion = '3.2.0'
  18. gsonVersion = '2.8.5'
  19. }
  20.  
  21. buildscript {
  22. ext.kotlin_version = '1.3.50'
  23. repositories {
  24. google()
  25. jcenter()
  26.  
  27. }
  28. dependencies {
  29. classpath 'com.android.tools.build:gradle:3.5.0'
  30. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  31. // NOTE: Do not place your application dependencies here; they belong
  32. // in the individual module build.gradle files
  33. }
  34. }
  35.  
  36. allprojects {
  37. repositories {
  38. google()
  39. jcenter()
  40.  
  41. }
  42. }
  43.  
  44. task clean(type: Delete) {
  45. delete rootProject.buildDir
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement