File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed
src/main/java/com/example/android_ui_kit_sample Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ build.gradle** file.
82
82
83
83
```
84
84
dependencies {
85
- implementation "com.quickblox:android-ui-kit:0.10.0 "
85
+ implementation "com.quickblox:android-ui-kit:0.10.1 "
86
86
87
87
implementation 'com.quickblox:quickblox-android-sdk-messages:4.2.2'
88
88
implementation 'com.quickblox:quickblox-android-sdk-chat:4.2.2'
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ android {
13
13
targetSdk 34
14
14
compileSdk 34
15
15
versionCode 1
16
- versionName " 1.12 .0"
16
+ versionName " 1.13 .0"
17
17
}
18
18
19
19
buildTypes {
@@ -41,7 +41,7 @@ android {
41
41
}
42
42
43
43
dependencies {
44
- implementation " com.quickblox:android-ui-kit:0.10.0 "
44
+ implementation " com.quickblox:android-ui-kit:0.10.1 "
45
45
46
46
implementation ' com.quickblox:quickblox-android-sdk-messages:4.2.2'
47
47
implementation ' com.quickblox:quickblox-android-sdk-chat:4.2.2'
Original file line number Diff line number Diff line change @@ -34,7 +34,15 @@ class App : Application() {
34
34
}
35
35
36
36
private fun setChatConfiguration () {
37
- QBChatService .setDebugEnabled( true )
37
+ QBChatService .setConfigurationBuilder(buildChatConfig() )
38
38
QBChatService .setDefaultPacketReplyTimeout(10000 )
39
+ QBChatService .setDebugEnabled(true )
40
+ }
41
+
42
+ private fun buildChatConfig (): QBChatService .ConfigurationBuilder {
43
+ val configurationBuilder = QBChatService .ConfigurationBuilder ()
44
+ configurationBuilder.socketTimeout = 300
45
+ configurationBuilder.preferredResumptionTime = 500
46
+ return configurationBuilder
39
47
}
40
48
}
You can’t perform that action at this time.
0 commit comments