-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathbuild.gradle
More file actions
41 lines (35 loc) · 1007 Bytes
/
build.gradle
File metadata and controls
41 lines (35 loc) · 1007 Bytes
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
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}
android {
compileSdk 35
namespace "com.example.chattutorial"
defaultConfig {
applicationId "com.example.chattutorial"
minSdk 21
targetSdk 34
versionCode 1
versionName "1.0"
}
// Enable ViewBinding
buildFeatures {
viewBinding true
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
kotlinOptions {
jvmTarget = "11"
}
}
dependencies {
// Add new dependencies
implementation "io.getstream:stream-chat-android-ui-components:6.28.0"
implementation "io.getstream:stream-chat-android-offline:6.28.0"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.8.7"
implementation "com.google.android.material:material:1.12.0"
implementation "androidx.activity:activity-ktx:1.10.1"
implementation "io.coil-kt:coil:2.7.0"
}