Issue in building the project using Sendbird Call SDK

I am getting this error:
Duplicate class org.webrtc.AudioProcessingFactory found in modules classes.jar (com.sendbird.sdk:sendbird-webrtc:1.0.4107) and classes.jar (org.webrtc:google-webrtc:1.0.24180)

I have another SDK in my project because of which I guess this error is happening.
What should I exclude in the dependency of the other SDK to avoid this error?

Thank you for your interest in Sendbird Calls SDK.
Yes, I agree with your assumption. As far as I know, our WebRTC library(com.sendbird.sdk:sendbird-webrtc:1.0.4107) version is higher than the one which is used in another lib (org.webrtc:google-webrtc:1.0.24180). So I guess if you exclude WebRTC library from another library, the conflict would be solved.

implementation (‘another.sdk.using.webrtc:1.0.0’) {
exclude group: “org.webrtc”, module: ‘google-webrtc’
}

I also this problem, when my project also had a module that was using a different version of WebRTC. Is there any solution to make them work together?