Advertisement
bllt20

build.gradle

Jul 25th, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. buildscript {
  2. ext.kotlin_version = '1.3.50'
  3. repositories {
  4. google()
  5. jcenter()
  6. }
  7.  
  8. dependencies {
  9. classpath 'com.android.tools.build:gradle:3.5.0'
  10. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  11. classpath 'com.google.gms:google-services:4.3.3'
  12. }
  13. }
  14.  
  15. allprojects {
  16. repositories {
  17. google()
  18. jcenter()
  19. }
  20. }
  21.  
  22. rootProject.buildDir = '../build'
  23. subprojects {
  24. project.buildDir = "${rootProject.buildDir}/${project.name}"
  25. }
  26. subprojects {
  27. project.evaluationDependsOn(':app')
  28. }
  29.  
  30. task clean(type: Delete) {
  31. delete rootProject.buildDir
  32. }
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement