-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathbuild.gradle
57 lines (42 loc) · 1.86 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
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.jakewharton.butterknife'
android {
compileSdkVersion Integer.parseInt(project.ANDROID_COMPILE_SDK_VERSION)
defaultConfig {
applicationId "sdk.chat.android.live"
multiDexEnabled = true
minSdkVersion Integer.parseInt(project.MIN_SDK)
targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION)
versionName CHAT_SDK_VERSION
versionCode CHAT_SDK_BUILD_NUMBER as int
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "com.firebaseui:firebase-ui-auth:$firebaseUiVersion"
implementation 'com.github.stfalcon:chatkit:0.3.3'
implementation "com.jakewharton:butterknife:$butterKnifeVersion"
annotationProcessor "com.jakewharton:butterknife-compiler:$butterKnifeVersion"
implementation 'androidmads.library.qrgenearator:QRGenearator:1.0.4'
api "androidx.constraintlayout:constraintlayout:$androidxConstraintLayoutVersion"
implementation 'com.github.blikoon:QRCodeScanner:0.1.2'
implementation "androidx.recyclerview:recyclerview:$androidxRecyclerViewVersion"
implementation "com.karumi:dexter:$dexterVersion"
implementation project(':firestream')
implementation project(':firestream-realtime')
implementation project(':firestream-firestore')
// implementation "sdk.chat:firestream:5.0.4"
// implementation "sdk.chat:firestream-realtime:5.0.4"
// implementation "sdk.chat:firestream-firestore:5.0.4"
}