-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[VC-977] Release v0.7.6 #46
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sync develop with main branch
…er, but BridgeDevSupportManager class was not found or could not be created Issue has been fixed by overriding the registerReceiver method in the Application class
…ndling for missed call CTA click
- Fix event name in eventEmitter class - Optimize imports
…randing properties
… strong reference to not let GC to collect it considering weakReference
…d handler details
…erTap/clevertap-signed-call-react-native-sdk into task/VC-974/expose_callScreenOnSignalling_parameter
… github.com:CleverTap/clevertap-signed-call-react-native-sdk into task/VC-987/garabge-collector_fix
- Resolve local build issue : `Could not get GOOGLE_APP_ID in Google Services file from build environment` by including GoogleService-Info.plist file - ignore GoogleService-Info.plist via .gitignore
- supports CT v6.2.1
[VC-1001] Update ChangeLog and Readme
[VC-990] Support Signed Call iOS SDK v0.0.9
…hannel [VC-989]: Expose signalling channel details via CallDetails
[VC-970]: Expose FCM processing mode implementation
…nts_for__parity [VC-988] Expose callback events in parity with Android SDK v0.0.7.6
[VC-987] Make `outgoingCallResponse` callback instance to hold the strong reference to fix GC issue
…Signalling_parameter [VC-974] Expose callScreenOnSignalling API parameter
…call [VC-975]: Sample app UI changes to input the remote-context
…ownColor_parameter [VC-971] Add support for cancel countdown color parameter in branding object
…Action_handler [VC-969] Replace the deprecated way to setting missedCall handler with new approach
…0.7.6 [VC-968] Support Signed Call Android SDK v0.0.7.6
…character [VC-978] Remove podSpec invalid character
ankursaini-clevertap
approved these changes
Jan 6, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What's new
[Android Platform]
5004
error-code within theSignedCallResponse
promise object is returned.onNetworkQualityResponse(int score)
callback, allowing the app to decide whether to proceed with or decline the call. Refer to the SDK documentation for detailed usage.initProperties
object which gets passed to theSignedCall.initialize(initProperties)
method:fcmProcessingMode
andfcmProcessingNotification
: SDK supports the two modes for processing FCM calls:FcmProcessingMode.foreground
andFCMProcessingMode.background
. These modes determine how the SDK handles incoming calls whether in background or in a foreground service depending on whether the app is actively running or is running in the background. TheFcmProcessingMode.background
is default mode. If choosing theFcmProcessingMode.foreground
, thefcmProcessingNotification
parameter is mandatory. Refer to the SDK documentation for more details on overriding the default mode.callScreenOnSignalling
: ABoolean
property to control when the outgoing call screen appears relative to the signaling process. By default, the SDK immediately displays the outgoing call screen upon a call request and performs the validations in background. Please refer to SDK documentation for detailed usage.SignedCall.SignedCallOnCallStatusChanged
handler:CallEvent.AppInitiatedDeclinedDueToNetworkQuality
: Allows to determine the cases where app initiates the call-decline based on the network quality score provided withinonNetworkQualityResponse(int score)
callback.CallEvent.EndedDueToLocalNetworkLoss
: Allows to determine when the call disconnects due to network loss at the local end.CallEvent.EndedDueToRemoteNetworkLoss
: Allows to determine when the call disconnects due to network loss at the remote end.NOTE: The
CallEvent.EndedDueToLocalNetworkLoss
andCallEvent.EndedDueToRemoteNetworkLoss
events are reported alongside the existingCallEvent.Ended
event to maintain backward compatibility.[iOS Platform]
[Android and iOS Platform]
Remote Context Configuration for Call Screens:
callProperties
object during call initiation, allowing to pass custom context for receiver's call screens.Bug Fixes
EXC_BAD_ACCESS
error that occurred when clicking the mute button on the CallKit screen. This exception was only observed in debugging mode.Behaviour Changes
cancelCountdownColor
parameter within theoverrideDefaultBranding
initProperty to customize the countdown ProgressBar's color. The default color is yellow (#F5FA55). Please refer to SDK documentation for the details on usage.Enhancements