2016-06-04 17:28:05 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2019-05-16 00:31:46 +02:00
|
|
|
ext.kotlin_version = '1.3.31'
|
2019-05-16 13:57:37 +02:00
|
|
|
ext.butterknifeVersion = '10.1.0'
|
2016-06-04 17:28:05 +02:00
|
|
|
repositories {
|
2017-12-03 21:31:06 +01:00
|
|
|
google()
|
2018-10-29 08:32:13 +01:00
|
|
|
jcenter()
|
2019-05-16 13:57:37 +02:00
|
|
|
//maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
|
2019-04-04 17:15:45 +02:00
|
|
|
maven { url 'https://maven.fabric.io/public' }
|
2016-06-04 17:28:05 +02:00
|
|
|
}
|
|
|
|
dependencies {
|
2019-05-16 13:57:37 +02:00
|
|
|
classpath 'com.android.tools.build:gradle:3.4.1'
|
2019-04-04 17:15:45 +02:00
|
|
|
classpath 'com.google.gms:google-services:4.2.0'
|
2019-05-16 13:57:37 +02:00
|
|
|
classpath 'io.fabric.tools:gradle:1.29.0'
|
2016-06-04 17:28:05 +02:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
2018-01-24 21:54:24 +01:00
|
|
|
|
2019-05-16 13:57:37 +02:00
|
|
|
classpath "com.jakewharton:butterknife-gradle-plugin:$butterknifeVersion"
|
2019-04-10 00:33:05 +02:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2016-06-04 17:28:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2018-02-21 15:07:01 +01:00
|
|
|
google()
|
2018-04-04 22:46:44 +02:00
|
|
|
jcenter()
|
2018-02-21 15:18:53 +01:00
|
|
|
|
2018-01-24 21:54:24 +01:00
|
|
|
maven {
|
|
|
|
url "https://maven.google.com"
|
|
|
|
}
|
2018-02-02 20:00:31 +01:00
|
|
|
ivy {
|
|
|
|
url 'https://github.com/'
|
|
|
|
layout 'pattern', {
|
|
|
|
artifact '/[organisation]/[module]/archive/[revision].[ext]'
|
|
|
|
}
|
2018-01-31 21:46:30 +01:00
|
|
|
}
|
2016-06-04 17:28:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|