forked from xorum-io/codeforces_watcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (35 loc) · 1.17 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
buildscript {
ext.kotlin_version = '1.3.61'
ext.coroutines_version = '1.3.3'
ext.serialization_version = '0.4.1'
ext.sqlDelight_version = '1.2.2'
ext.ktor_version = '1.2.6'
ext.klock_version = '1.8.4'
repositories {
google()
jcenter()
maven { url "https://dl.bintray.com/soywiz/soywiz" }
maven { url 'https://maven.fabric.io/public' }
maven { url "https://kotlin.bintray.com/kotlinx" }
maven { url "http://dl.bintray.com/kotlin/kotlin-eap" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
classpath 'io.fabric.tools:gradle:1.31.2'
classpath 'com.google.gms:google-services:4.3.3'
classpath 'co.touchlab:kotlinxcodesync:0.1.2'
classpath "com.squareup.sqldelight:gradle-plugin:$sqlDelight_version"
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://maven.google.com/' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}