-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.gradle
executable file
·102 lines (92 loc) · 3.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// Top-level build file where you can add configuration options common to all sub-projects/modules.
import org.gradle.internal.os.OperatingSystem
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
classpath "com.google.gms:google-services:4.3.3"
classpath 'com.novoda:bintray-release:0.9.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.71"
classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.1'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.1.1'
classpath 'com.google.firebase:perf-plugin:1.3.1'
}
}
ext {
bintrayVersion = "1.8.4"
mavenGradleVersion = "2.1"
androidxAppcompatVersion = "1.1.0"
androidxConstraintLayoutVersion = "2.0.0-beta5"
androidxLifecycleExtensionsVersion = "2.2.0"
androidxRecyclerViewVersion = "1.1.0"
androidxMultidexVersion = "2.0.1"
materialVersion = "1.1.0"
playAuthVersion = "17.0.0"
playMapsVersion = "17.0.0"
playLocationVersion = "17.0.0"
firebaseUiVersion = "6.2.0"
firebaseCoreVersion = "17.4.1"
firebaseDatabaseVersion = "19.3.0"
firebaseFirestoreVersion = "21.4.3"
firebaseAuthVersion = "19.3.1"
firebaseStorageVersion = "19.1.1"
firebaseMessagingVersion = "20.1.7"
firebaseFunctionsVersion = "19.0.2"
firebaseIIDVersion = "18.0.0"
firebasePerformanceVersion = "19.0.7"
firebaseCrashlyticsVersion = "17.0.0"
firebaseAnalyticsVersion = "17.4.1"
greenDaoVersion = "3.2.2"
frescoVersion = "1.13.0"
rxJavaVersion = "2.2.17"
rxAndroidVersion = "2.1.1"
rxRelayVersion = "2.1.1"
rxQueueVersion = "2.0.0"
compressorVersion = "2.1.0"
okHttpVersion = "3.11.0"
okHttpDownloaderVersion = "1.1.0"
prettyTimeVersion = "4.0.1.Final"
imageCropperVersion = "2.8.0"
photoViewVersion = "2.3.0"
androidDatabaseSQLCipher = "4.3.0"
matisseVersion = "0.5.3-beta3b1"
chatKit = "0.3.3b11"
shapeImageViewVersion = "0.9.+@aar"
circleImageViewVersion = "3.1.0"
dexterVersion = "6.0.2"
tinyLogVersion = "1.3.6"
butterKnifeVersion = "10.2.1"
iconicsVersion = "5.0.0-a01"
materialDrawerVersion = "8.0.0-a07"
// iconicsMaterialDesignIconsVersion = "5.0.1.0-kotlin@aar"
iconicsGoogleMaterialIconsVersion = "3.0.1.4.original-kotlin@aar"
iconicsFontAwesomeTypefaceVersion = "5.3.1.2-kotlin@aar"
materialSearchVersion = "1.4.0"
materialSpinnerVersion = "1.3.1"
keyboardVisibilityEventVersion = "3.0.0-RC2"
androidAudioRecorderVersion = "0.3.0"
glideVersion = "4.11.0"
exoplayerVersion = "2.11.3"
androidAudioConverterVersion = "0.0.8"
// Used by file messages
androidNetworkingVersion = "1.0.2"
pdfiumVersion = "1.9.0"
smackVersion = "4.3.4"
}
allprojects {
if (OperatingSystem.current().isWindows()) {
buildDir = "C:/tmp/${rootProject.name}/${project.name}"
}
repositories {
google()
maven { url "https://jitpack.io" }
jcenter()
maven { url "http://dl.bintray.com/chat-sdk/chat-sdk-android" }
}
}
subprojects {
tasks.withType(Javadoc).all { enabled = false }
}