You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Pull request #473: MCA-4335 Various fixes and customization improvement in InfobipRtcUi
Merge in MML/infobip-mobile-messaging-android from jdzubak-MCA-4335-rtcui-fixes-and-improvements to master
Squashed commit of the following:
commit 343510896ee47ce3d881aca7d7a12bfd22b05563
Author: Jakub Dzubak <Jakub.Dzubak@infobip.com>
Date: Mon Dec 9 08:32:36 2024 +0100
MCA-4335 Various fixes and customization improvement in InfobipRtcUi
commit 0182e3cb5c06dd3624a7f60af3e08a48ebde19c6
Author: Jakub Dzubak <Jakub.Dzubak@infobip.com>
Date: Fri Dec 6 15:04:06 2024 +0100
MCA-4335 Various fixes and customization improvement in InfobipRtcUi
Copy file name to clipboardexpand all lines: infobip-mobile-messaging-android-chat-sdk/src/main/java/org/infobip/mobile/messaging/chat/attachments/InAppChatAttachmentHelper.java
Copy file name to clipboardexpand all lines: infobip-mobile-messaging-android-chat-sdk/src/main/java/org/infobip/mobile/messaging/chat/view/InAppChatFragment.kt
+1-1
Original file line number
Diff line number
Diff line change
@@ -736,7 +736,7 @@ class InAppChatFragment : Fragment(), InAppChatFragmentActivityResultDelegate.Re
736
736
737
737
overridefunonError(
738
738
context:Context?,
739
-
exception:InternalSdkError.InternalSdkException?
739
+
exception:Exception?
740
740
) {
741
741
if (exception!!.message ==InternalSdkError.ERROR_ATTACHMENT_MAX_SIZE_EXCEEDED.get()) {
Copy file name to clipboardexpand all lines: infobip-rtc-ui/src/main/java/com/infobip/webrtc/ui/InfobipRtcUi.kt
+2-2
Original file line number
Diff line number
Diff line change
@@ -349,8 +349,8 @@ interface InfobipRtcUi {
349
349
* 3. Default [InfobipRtcUi] style defined by InfobipRtcUi library
350
350
*
351
351
* Final value for every theme attribute is evaluated separately.
352
-
* It means you can define [InfobipRtcUiTheme.incomingCallMessageStyle] in runtime, colors in xml and skip icons.
353
-
* Library will use [InfobipRtcUiTheme.incomingCallMessageStyle] you defined in runtime, colors you defined in xml and default icons provided by library itself.
352
+
* It means you can define [InfobipRtcUiTheme.incomingCallScreenStyle] in runtime, colors in xml and skip icons.
353
+
* Library will use [InfobipRtcUiTheme.incomingCallScreenStyle] you defined in runtime, colors you defined in xml and default icons provided by library itself.
354
354
*
355
355
* @param theme data object holding all theme attributes
0 commit comments