-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
63 lines (57 loc) · 2.07 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.versions = [
'compileSdk' : 28,
'minSdk' : 23,
'targetSdk' : 28,
'constraintLayout' : '2.0.0-alpha3',
'coreKtx' : '1.0.1',
'dagger' : '2.16',
'espresso' : '3.0.2',
'fabric' : '1.25.4',
'ads' : '17.2.0',
'firebase' : '16.0.7',
'messaging' : '17.4.0',
'firestore' : '18.1.0',
'crashlytics' : '2.9.9',
'glide' : '4.9.0',
'googleServices' : '4.0.1',
'gson' : '2.8.5',
'kotlin' : '1.3.21',
'lifecycle' : '2.1.0-alpha04',
'navigation' : '2.0.0',
'okhttp' : '3.10.0',
'retrofit' : '2.4.0',
'room' : '2.0.0',
]
repositories {
google()
mavenCentral()
jcenter()
maven { url 'https://maven.fabric.io/public' }
maven { url 'http://dl.bintray.com/kotlin/kotlin-eap' }
maven { url "https://plugins.gradle.org/m2/"}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath "io.fabric.tools:gradle:${versions.fabric}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath "com.google.gms:google-services:${versions.googleServices}"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:${versions.navigation}"
}
}
plugins {
id "org.jlleitschuh.gradle.ktlint" version "6.2.0"
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io"}
maven { url 'https://maven.google.com/'}
maven { url 'http://dl.bintray.com/kotlin/kotlin-eap' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}