Skip to content

Commit 844851b

Browse files
Merge branch 'refs/heads/develop'
2 parents a66338c + 3172496 commit 844851b

File tree

27 files changed

+209
-100
lines changed

27 files changed

+209
-100
lines changed

.github/workflows/android.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: Android CI
22

33
on:
44
push:
5-
branches: [ main ]
5+
branches:
6+
- develop
7+
- main
68

79
pull_request:
810
branches:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010

1111
<div align="center">
1212

13-
![stream-video-android-core](https://img.shields.io/badge/stream--video--android--core-10.94%20MB-lightgreen)
14-
![stream-video-android-ui-xml](https://img.shields.io/badge/stream--video--android--ui--xml-5.79%20MB-lightgreen)
15-
![stream-video-android-ui-compose](https://img.shields.io/badge/stream--video--android--ui--compose-5.78%20MB-lightgreen)
13+
![stream-video-android-core](https://img.shields.io/badge/stream--video--android--core-11.19%20MB-lightgreen)
14+
![stream-video-android-ui-xml](https://img.shields.io/badge/stream--video--android--ui--xml-5.66%20MB-lightgreen)
15+
![stream-video-android-ui-compose](https://img.shields.io/badge/stream--video--android--ui--compose-5.79%20MB-lightgreen)
1616

1717
</div>
1818

buildSrc/src/main/kotlin/io/getstream/video/android/Configuration.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ object Configuration {
66
const val minSdk = 24
77
const val majorVersion = 1
88
const val minorVersion = 3
9-
const val patchVersion = 0
9+
const val patchVersion = 1
1010
const val versionName = "$majorVersion.$minorVersion.$patchVersion"
11-
const val versionCode = 46
11+
const val versionCode = 47
1212
const val snapshotVersionName = "$majorVersion.$minorVersion.${patchVersion + 1}-SNAPSHOT"
1313
const val artifactGroup = "io.getstream"
14-
const val streamVideoCallGooglePlayVersion = "1.3.0"
14+
const val streamVideoCallGooglePlayVersion = "1.3.1"
1515
const val streamWebRtcVersionName = "1.3.6"
1616
}

demo-app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ dependencies {
221221
implementation(libs.stream.chat.ui.utils)
222222

223223
implementation(libs.stream.push.firebase)
224-
implementation(libs.stream.log.android)
224+
implementation(libs.stream.log)
225225

226226
implementation(libs.androidx.material)
227227
implementation(libs.androidx.core.ktx)

demo-app/src/main/kotlin/io/getstream/video/android/ui/lobby/CallLobbyScreen.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ fun CallLobbyScreen(
8888
onBack: () -> Unit,
8989
) {
9090
LockScreenOrientation(orientation = Configuration.ORIENTATION_PORTRAIT)
91-
val isLoading by callLobbyViewModel.isLoading.collectAsState()
91+
val isLoading by callLobbyViewModel.isLoading.collectAsStateWithLifecycle()
9292
val isMicrophoneEnabled by callLobbyViewModel.microphoneEnabled.collectAsStateWithLifecycle()
9393
val isCameraEnabled by callLobbyViewModel.cameraEnabled.collectAsStateWithLifecycle()
9494
val call by remember {
@@ -271,7 +271,7 @@ private fun CallLobbyBody(
271271
private fun LobbyDescription(
272272
callLobbyViewModel: CallLobbyViewModel,
273273
) {
274-
val participantCounts by callLobbyViewModel.call.state.participantCounts.collectAsState()
274+
val participantCounts by callLobbyViewModel.call.state.participantCounts.collectAsStateWithLifecycle()
275275

276276
LobbyDescriptionContent(participantCounts = participantCounts) {
277277
callLobbyViewModel.handleUiEvent(

demo-app/src/main/kotlin/io/getstream/video/android/util/StreamVideoInitHelper.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,10 @@ object StreamVideoInitHelper {
198198
ensureSingleInstance = false,
199199
notificationConfig = NotificationConfig(
200200
pushDeviceGenerators = listOf(
201-
FirebasePushDeviceGenerator(providerName = "firebase"),
201+
FirebasePushDeviceGenerator(
202+
context = context,
203+
providerName = "firebase",
204+
),
202205
),
203206
),
204207
tokenProvider = object : TokenProvider {

gradle/libs.versions.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ itu = "1.7.3"
4949
streamWebRTC = "1.3.6"
5050
streamNoiseCancellation = "1.0.2"
5151
streamResult = "1.3.0"
52-
streamChat = "6.5.1"
53-
streamLog = "1.1.4"
54-
streamPush = "1.1.8"
52+
streamChat = "6.10.0"
53+
streamLog = "1.3.1"
54+
streamPush = "1.3.0"
5555

5656
androidxTest = "1.5.2"
5757
androidxTestCore = "1.5.0"
@@ -152,7 +152,6 @@ stream-result = { group = "io.getstream", name = "stream-result", version.ref =
152152
stream-result-call = { group = "io.getstream", name = "stream-result-call", version.ref = "streamResult" }
153153

154154
stream-log = { group = "io.getstream", name = "stream-log", version.ref = "streamLog" }
155-
stream-log-android = { group = "io.getstream", name = "stream-log-android", version.ref = "streamLog" }
156155
stream-push = { group = "io.getstream", name = "stream-android-push", version.ref = "streamPush" }
157156
stream-push-delegate = { group = "io.getstream", name = "stream-android-push-delegate", version.ref = "streamPush" }
158157
stream-push-firebase = { group = "io.getstream", name = "stream-android-push-firebase", version.ref = "streamPush" }

metrics/size.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"debug": {
3-
"stream-video-android-core": 12472,
4-
"stream-video-android-ui-xml": 7636,
5-
"stream-video-android-ui-compose": 9272
3+
"stream-video-android-core": 12924,
4+
"stream-video-android-ui-xml": 7376,
5+
"stream-video-android-ui-compose": 9316
66
},
77
"release": {
8-
"stream-video-android-core": 11204,
9-
"stream-video-android-ui-xml": 5936,
10-
"stream-video-android-ui-compose": 5928
8+
"stream-video-android-core": 11468,
9+
"stream-video-android-ui-xml": 5800,
10+
"stream-video-android-ui-compose": 5936
1111
}
1212
}

metrics/stream-video-android-metrics/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ android {
1010

1111
defaultConfig {
1212
minSdk = Configuration.minSdk
13+
versionCode = 1
1314
ndk {
1415
abiFilters += "armeabi-v7a"
1516
}

0 commit comments

Comments
 (0)