I have used this lib in my code
com.twilio:video-android:4.2.0
I want to exclude this jar file from it because it is conflicted with one other libraries
I have tried many ways but non of them work with me
I have used this lib in my code
com.twilio:video-android:4.2.0
I want to exclude this jar file from it because it is conflicted with one other libraries
I have tried many ways but non of them work with me
Use this to remove the library for one of the gradle dependency
implementation ('com.twilio:video-android:4.2.0'){
exclude module:'<whatever module is in libwebrtc.jar>'
}
please try below in your gradle dependency.
implementation ('com.twilio:video-android:4.2.0'){
exclude module: "libwebrtc.jar"
}
Please refer to this answer for further help.