2017-04-20 18:23:59 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2017-11-04 15:51:15 +01:00
|
|
|
|
2018-01-17 18:39:16 +01:00
|
|
|
ext.kotlin_version = '1.2.20'
|
2018-01-14 22:47:42 +01:00
|
|
|
ext.anko_version='0.10.4'
|
2017-11-04 15:51:15 +01:00
|
|
|
|
2017-04-20 18:23:59 +02:00
|
|
|
repositories {
|
|
|
|
jcenter()
|
2017-04-23 07:42:09 +02:00
|
|
|
mavenCentral()
|
2017-11-30 15:15:47 +01:00
|
|
|
google()
|
2017-04-20 18:23:59 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2017-11-30 15:15:47 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:3.0.1'
|
2017-05-24 11:20:56 +02:00
|
|
|
classpath 'com.google.gms:google-services:3.0.0'
|
2017-04-20 18:23:59 +02:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
2017-11-04 15:51:15 +01:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2017-12-22 13:59:52 +01:00
|
|
|
|
|
|
|
// classpath 'com.getkeepsafe.dexcount:dexcount-gradle-plugin:0.8.2'
|
2017-04-20 18:23:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
2017-08-24 13:44:06 +02:00
|
|
|
maven { url 'https://maven.google.com' }
|
|
|
|
maven { url 'https://jitpack.io' }
|
2017-11-30 15:15:47 +01:00
|
|
|
google()
|
2017-04-20 18:23:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|