forked from chat-sdk/chat-sdk-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·115 lines (102 loc) · 3.47 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
101
102
103
104
105
106
107
108
109
110
111
112
113
// 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()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
classpath "com.google.gms:google-services:4.3.8"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.72"
classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.1'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.6.1'
classpath 'com.google.firebase:perf-plugin:1.4.0'
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.15.2"
classpath "org.greenrobot:greendao-gradle-plugin:3.3.0"
}
}
ext {
bintrayVersion = "1.8.4"
mavenGradleVersion = "2.1"
androidxAppcompatVersion = "1.3.0"
androidxConstraintLayoutVersion = "2.1.0-beta02"
androidxLifecycleExtensionsVersion = "2.2.0"
androidxRecyclerViewVersion = "1.2.1"
androidxMultidexVersion = "2.0.1"
androidxAnnotation = "1.2.0"
materialVersion = "1.3.0"
playAuthVersion = "17.0.0"
playMapsVersion = "17.0.0"
playLocationVersion = "17.0.0"
firebaseUiVersion = "7.1.1"
firebaseCoreVersion = "17.4.1"
firebaseDatabaseVersion = "19.6.0"
firebaseFirestoreVersion = "22.0.1"
firebaseAuthVersion = "20.0.1"
firebaseStorageVersion = "19.2.1"
firebaseMessagingVersion = "21.0.1"
firebaseFunctionsVersion = "19.2.0"
firebasePerformanceVersion = "19.1.1"
firebaseCrashlyticsVersion = "17.3.1"
firebaseAnalyticsVersion = "18.0.0"
greenDaoVersion = "3.3.0"
frescoVersion = "1.13.0"
rxJavaVersion = "2.2.17"
rxAndroidVersion = "2.1.1"
rxRelayVersion = "2.1.1"
rxQueueVersion = "2.0.0"
compressorVersion = "2.1.1"
okHttpVersion = "3.12.1"
// okHttpVersion = "4.7.2"
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-beta3b2"
chatKitVersion = "0.3.3b14"
shapeImageViewVersion = "0.9.+@aar"
circleImageViewVersion = "3.1.0"
dexterVersion = "6.0.2"
tinyLogVersion = "1.3.6"
butterKnifeVersion = "10.2.1"
iconicsVersion = "5.2.8"
materialDrawerVersion = "8.2.0"
iconicsGoogleMaterialIconsVersion = "4.0.0.1-kotlin@aar"
iconicsFontAwesomeTypefaceVersion = "5.9.0.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.15.0"
androidAudioConverterVersion = "0.0.8"
gsonVersion = "2.8.6"
qrGenerator = "1.0.4"
zxing = "1.9.13"
// Used by file messages
androidNetworkingVersion = "1.0.2"
pdfiumVersion = "1.9.0"
smackVersion = "4.4.3"
// smackVersion = "4.4.0"
activity_ktx_version = "1.2.3"
kotlin_version = "1.3.72"
kotlin_version_jdk7 = "1.4.32"
}
allprojects {
if (OperatingSystem.current().isWindows()) {
buildDir = "C:/tmp/${rootProject.name}/${project.name}"
}
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://chatsdk.jfrog.io/artifactory/release/chat-sdk-android" }
maven { url 'https://jitpack.io' }
}
}
subprojects {
tasks.withType(Javadoc).all { enabled = false }
}