-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbuild.gradle
40 lines (34 loc) · 1.02 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
plugins {
id 'com.android.application'
}
android {
compileSdk 35
namespace "com.example.chattutorial"
defaultConfig {
applicationId "com.example.chattutorial"
minSdk 21
targetSdk 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
// Enable ViewBinding
buildFeatures {
viewBinding true
}
}
dependencies {
// Add new dependencies
implementation "io.getstream:stream-chat-android-ui-components:6.12.1"
implementation "io.getstream:stream-chat-android-offline:6.12.1"
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"
}