-
Notifications
You must be signed in to change notification settings - Fork 611
/
build.gradle
executable file
·115 lines (98 loc) · 3.14 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.
buildscript {
repositories {
google()
// jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath "com.google.gms:google-services:4.3.14"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20"
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
classpath 'com.google.firebase:perf-plugin:1.4.2'
classpath "org.greenrobot:greendao-gradle-plugin:3.3.0"
}
}
//plugins {
// id 'signing'
// id 'maven-publish'
//}
ext {
jfrogVersion = "4.29.1"
mavenGradleVersion = "2.1"
androidxAppcompatVersion = "1.5.1"
androidxConstraintLayoutVersion = "2.1.4"
androidxLifecycleExtensionsVersion = "2.2.0"
androidxRecyclerViewVersion = "1.2.1"
androidxMultidexVersion = "2.0.1"
androidxAnnotation = "1.2.0"
materialVersion = "1.7.0"
playAuthVersion = "17.0.0"
playMapsVersion = "17.0.0"
playLocationVersion = "17.0.0"
firebaseUiVersion = "7.1.1"
firebaseBOM = "30.1.0"
// firebaseCoreVersion = "17.4.1"
// firebaseDatabaseVersion = "19.6.0"
// firebaseFirestoreVersion = "22.0.1"
// firebaseAuthVersion = "20.0.1"
// firebaseStorageVersion = "19.2.1"
// firebaseMessagingVersion = "23.0.6"
// 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.10.0"
// 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"
chatKitVersion = "0.3.6"
circleImageViewVersion = "3.1.0"
dexterVersion = "6.2.3"
tinyLogVersion = "1.3.6"
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.13.0"
exoplayerVersion = "2.18.2"
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.5"
activity_ktx_version = "1.2.3"
kotlin_version = "1.6.10"
kotlin_version_jdk7 = "1.6.10"
activityKtxVersion = "1.6.1"
fragmentKtxVersion = "1.5.5"
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
subprojects {
tasks.withType(Javadoc).all { enabled = false }
}