29 lines
782 B
Groovy
29 lines
782 B
Groovy
buildscript {
|
|
ext.kotlin_version = '1.1.51'
|
|
ext.anko_version = '0.10.2'
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.0.1'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
apply plugin: 'com.github.ben-manes.versions'
|
|
|
|
repositories {
|
|
jcenter()
|
|
mavenCentral()
|
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
|
|
maven { url "https://jitpack.io" }
|
|
google()
|
|
}
|
|
}
|