-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
59 lines (47 loc) · 1.77 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
apply plugin: 'com.github.ben-manes.versions'
buildscript {
ext.libraryVersion = "16"
ext.versions = [
kotlin: "1.3.41"
]
ext.deps = [
kotlin : "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${versions.kotlin}",
appcompat : 'androidx.appcompat:appcompat:1.0.2',
material : 'com.google.android.material:material:1.0.0',
androidxcore: 'androidx.core:core-ktx:1.0.1',
rxjava2 : [
core : 'io.reactivex.rxjava2:rxjava:2.2.11',
android: 'io.reactivex.rxjava2:rxandroid:2.1.1',
kotlin : 'io.reactivex.rxjava2:rxkotlin:2.4.0',
],
retrofit : 'com.squareup.retrofit2:retrofit:2.6.1',
gson : 'com.google.code.gson:gson:2.8.5',
firebase : [
core : 'com.google.firebase:firebase-core:17.0.1',
firestore: 'com.google.firebase:firebase-firestore:20.2.0',
storage : 'com.google.firebase:firebase-storage:18.1.1',
],
]
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.21.0'
classpath 'org.jetbrains.dokka:dokka-android-gradle-plugin:0.9.18'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
}
}
allprojects {
apply from: "$rootDir/ktlint.gradle"
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}