File tree Expand file tree Collapse file tree 4 files changed +16
-4
lines changed
src/main/java/org/telnyx/webrtc/compose_app/ui/screens Expand file tree Collapse file tree 4 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ android {
1818 applicationId = " org.telnyx.webrtc.compose_app"
1919 minSdk = 27
2020 targetSdk = 35
21- versionCode = 17
22- versionName = " 17 "
21+ versionCode = 18
22+ versionName = " 18 "
2323
2424
2525 testInstrumentationRunner = " androidx.test.runner.AndroidJUnitRunner"
Original file line number Diff line number Diff line change @@ -124,7 +124,10 @@ fun HomeScreen(
124124) {
125125 val loginSheetState = rememberModalBottomSheetState(
126126 skipPartiallyExpanded = true ,
127- confirmValueChange = { false }
127+ confirmValueChange = { newValue ->
128+ // Prevent the sheet from being hidden via swipe gesture
129+ newValue != SheetValue .Hidden
130+ }
128131 )
129132 val environmentSheetState = rememberModalBottomSheetState(true , confirmValueChange = { newValue ->
130133 newValue != SheetValue .Hidden
Original file line number Diff line number Diff line change 1+ ## [ 3.3.0] ( https://github.com/team-telnyx/telnyx-webrtc-android/releases/tag/3.3.0 ) (2025-11-18)
2+
3+ ### Enhancement
4+ - Support for base64 encoded images in AI assistant messages
5+ - Added AudioConstraints data class on invite and answer to allow for echoCancellation, noiseSuppression and autoGainControl
6+
7+ ### Bug Fixing
8+ - When TxSocket is now closing by close() instead of cancel() to prevent onError callback
9+
110## [ 3.2.0] ( https://github.com/team-telnyx/telnyx-webrtc-android/releases/tag/3.2.0 ) (2025-10-22)
211
312### Enhancement
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ android {
1515}
1616
1717def getVersionName = { ->
18- return " 3.2 .0"
18+ return " 3.3 .0"
1919}
2020
2121def getArtifactId = { ->
You can’t perform that action at this time.
0 commit comments