-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathbuild.gradle
49 lines (42 loc) · 1.38 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
plugins {
id 'com.android.application'
id 'com.google.gms.google-services'
id 'org.jetbrains.kotlin.android'
}
version = UIKIT_VERSION
android {
namespace 'com.sendbird.uikit.samples'
compileSdk 34
defaultConfig {
applicationId "com.sendbird.uikit.samples"
minSdkVersion 21
targetSdkVersion 34
versionCode 1
versionName UIKIT_VERSION
multiDexEnabled true
buildConfigField "String", "VERSION_NAME", "\"$UIKIT_VERSION\""
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
buildFeatures {
viewBinding true
buildConfig = true
}
}
dependencies {
implementation "com.sendbird.sdk:uikit:$UIKIT_VERSION"
implementation(platform("com.google.firebase:firebase-bom:32.2.3"))
implementation "androidx.multidex:multidex:2.0.1"
implementation 'com.google.firebase:firebase-messaging'
implementation 'com.google.android.material:material:1.5.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'androidx.viewpager2:viewpager2:1.0.0'
implementation 'com.github.bumptech.glide:glide:4.13.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.13.0'
}