Advertisement
Guest User

project/build.gradle

a guest
Dec 19th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.67 KB | None | 0 0
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2.  
  3. apply from: 'buildsystem/dependencies.gradle'
  4.  
  5. buildscript {
  6.     ext.kotlin_version = "1.3.61"
  7.     ext.gradlePluginVersion = "3.5.2"
  8.  
  9.     repositories {
  10.         google()
  11.         jcenter()
  12.     }
  13.     dependencies {
  14.         classpath "com.android.tools.build:gradle:$gradlePluginVersion"
  15.         classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  16.         // NOTE: Do not place your application dependencies here; they belong
  17.         // in the individual module build.gradle files
  18.     }
  19. }
  20.  
  21. task clean(type: Delete) {
  22.     delete rootProject.buildDir
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement