2015-08-05 19:48:41 +02:00
|
|
|
buildscript {
|
2018-07-11 16:59:50 +02:00
|
|
|
ext.kotlin_version = '1.2.51'
|
2018-07-05 18:40:48 +02:00
|
|
|
ext.anko_version = '0.10.5'
|
2015-08-05 19:48:41 +02:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
2017-10-31 07:50:57 +01:00
|
|
|
google()
|
2015-08-05 19:48:41 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2018-06-12 16:54:00 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:3.1.3'
|
2017-07-28 07:39:57 +02:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2018-07-05 18:40:48 +02:00
|
|
|
classpath 'com.github.ben-manes:gradle-versions-plugin:0.20.0'
|
2015-08-05 19:48:41 +02:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
2017-04-04 06:29:44 +02:00
|
|
|
apply plugin: 'com.github.ben-manes.versions'
|
|
|
|
|
2015-08-05 19:48:41 +02:00
|
|
|
repositories {
|
2018-06-13 19:48:00 +02:00
|
|
|
google()
|
2015-08-05 19:48:41 +02:00
|
|
|
jcenter()
|
|
|
|
mavenCentral()
|
|
|
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
|
2017-07-24 18:01:40 +02:00
|
|
|
maven { url "https://jitpack.io" }
|
2015-08-05 19:48:41 +02:00
|
|
|
}
|
|
|
|
}
|