-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·114 lines (101 loc) · 3.36 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
// jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.1.1'
classpath "com.google.gms:google-services:4.3.10"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.3'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.8.1'
classpath 'com.google.firebase:perf-plugin:1.4.1'
classpath "org.greenrobot:greendao-gradle-plugin:3.3.0"
}
}
ext {
kotlin_version = "1.6.30"
jfrogVersion = "4.25.2"
mavenGradleVersion = "2.1"
androidxAppcompatVersion = "1.4.1"
androidxConstraintLayoutVersion = "2.1.3"
androidxLifecycleExtensionsVersion = "2.2.0"
androidxRecyclerViewVersion = "1.2.1"
androidxMultidexVersion = "2.0.1"
androidxAnnotation = "1.2.0"
materialVersion = "1.5.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 = "4.9.3"
// okHttpVersion = "3.12.1"
okHttpDownloaderVersion = "1.1.0"
prettyTimeVersion = "4.0.4.Final"
imageCropperVersion = "2.9.0"
photoViewVersion = "2.3.0"
androidDatabaseSQLCipher = "4.3.0"
matisseVersion = "0.5.4"
chatKitVersion = "0.3.5"
shapeImageViewVersion = "0.9.+@aar"
circleImageViewVersion = "3.1.0"
dexterVersion = "6.0.2"
tinyLogVersion = "1.3.6"
butterKnifeVersion = "10.2.3"
materialDrawerVersion = "8.2.0"
iconicsVersion = "5.3.3"
iconicsGoogleMaterialIconsVersion = "4.0.0.2-kotlin@aar"
iconicsFontAwesomeTypefaceVersion = "5.9.0.2-kotlin@aar"
materialSearchVersion = "1.5.0"
materialSpinnerVersion = "1.3.1"
keyboardVisibilityEventVersion = "3.0.0-RC2"
// androidAudioRecorderVersion = "0.3.9"
androidAudioRecorderVersion = "1.0.0"
glideVersion = "4.12.0"
exoplayerVersion = "2.15.0"
androidAudioConverterVersion = "0.0.8"
gsonVersion = "2.8.8"
qrGenerator = "1.1.0"
zxing = "2.0"
// Used by file messages
androidNetworkingVersion = "v1.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 = "1.6.10"
// kotlin_version_jdk7 = "1.4.32"
kotlin_version_jdk7 = "1.6.10"
}
allprojects {
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 }
}