-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
37 lines (33 loc) · 977 Bytes
/
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
buildscript {
ext.kotlinVersion = '1.2.71'
ext.materialVersion = '1.0.0'
ext.androidXVersion = '1.0.0'
ext.lifecycleVersion = '2.0.0'
ext.ktxVersion = '1.0.0'
ext.moshiVersion = '1.6.0'
ext.fastAdapterVersion = '3.3.1'
repositories {
google()
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.0-beta01'
classpath "com.google.gms:google-services:4.0.1"
classpath 'com.google.firebase:firebase-plugins:1.1.5'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "io.fabric.tools:gradle:1.26.0"
classpath "com.github.ben-manes:gradle-versions-plugin:0.20.0"
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}