forked from chat-sdk/chat-sdk-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
64 lines (59 loc) · 1.81 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
import org.gradle.internal.os.OperatingSystem
buildscript {
ext.bintrayVersion = "1.8.4"
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.0.1'
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$bintrayVersion"
}
}
ext {
bintrayVersion = "1.8.4"
mavenGradleVersion = "2.1"
androidxAppcompatVersion = "1.0.2"
androidxConstraintLayoutVersion = "2.0.0-alpha2"
androidxLifecycleExtensionsVersion = "2.0.0"
androidxRecyclerViewVersion = "1.0.0"
materialVersion = "1.0.0"
playAuthVersion = "16.0.1"
playMapsVersion = "16.0.0"
playPlacesVersion = "16.0.0"
firebaseUiVersion = "4.2.1"
firebaseCoreVersion = "16.0.5"
firebaseDatabaseVersion = "16.0.5"
firebaseAuthVersion = "16.0.5"
firebaseStorageVersion = "16.0.5"
firebaseMessagingVersion = "17.3.4"
firebaseFunctionsVersion = "16.1.3"
timberVersion = "4.7.1"
greenDaoVersion = "3.2.2"
frescoVersion = "1.10.0"
rxJavaVersion = "2.2.3"
rxAndroidVersion = "2.1.0"
gsonVersion = "2.8.5"
jodaTimeVersion = "2.10.1"
apacheCommonsVersion = "3.7"
compressorVersion = "2.1.0"
okHttpVersion = "3.11.0"
facebookLoginVersion = "4.38.1"
twitterVersion = "3.3.0"
prettyTimeVersion = "4.0.1.Final"
countryPickerVersion = "2.0.0"
imageCropperVersion = "2.8.0"
photoViewVersion = "2.2.0"
}
allprojects {
if (OperatingSystem.current().isWindows()) {
buildDir = "C:/tmp/${rootProject.name}/${project.name}"
}
repositories {
google()
maven { url "https://jitpack.io" }
jcenter()
}
}