Advertisement
Guest User

Untitled

a guest
Jan 13th, 2018
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.69 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.     ext.kotlin_version = '1.2.10'
  5.     ext.anko_version='0.10.4'
  6.     repositories {
  7.         google()
  8.         jcenter()
  9.     }
  10.     dependencies {
  11.         classpath 'com.android.tools.build:gradle:3.0.1'
  12.         classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  13.  
  14.         // NOTE: Do not place your application dependencies here; they belong
  15.         // in the individual module build.gradle files
  16.     }
  17. }
  18.  
  19. allprojects {
  20.     repositories {
  21.         google()
  22.         jcenter()
  23.     }
  24. }
  25.  
  26. task clean(type: Delete) {
  27.     delete rootProject.buildDir
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement