Files
FrasesDeAnime/build.gradle
Kevin Puertas c5427d1a1f Initial commit
2017-12-02 21:31:49 +01:00

31 lines
760 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
ext.kotlin_version = '1.2.0-release-Studio3.0-1'
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.0"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven { url 'https://jitpack.io' }
maven {
url "https://maven.google.com"
}
google()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}