Twilio: Android Dependencies Issue
I'm currently implementing two Twilio SDKs: Programmable Video IP Messaging Client I'm realizing that one dependency affects the other, or at least so I believe, since I first im
Solution 1:
Twilio Developer Evangelist here.
We had a dependency conflict with com.twilio:ip-messaging-android:0.8.1, but have now fixed that and the fact that they use two different AccessManagers in 0.9.0. this should solve the problem you're encountering.
So please update your gradle file to be:
dependencies {
compile'com.koushikdutta.ion:ion:2.1.7'compile'com.twilio:ip-messaging-android:0.9.0'compile'com.twilio:conversations-android:0.12.2'compile'com.android.support:appcompat-v7:23.1.1'compile'com.android.support:design:23.1.1'
}
More information about this update can be found here. Hope this helps you
Post a Comment for "Twilio: Android Dependencies Issue"