在我使用的 Android 项目中
compile 'com.squareup.okhttp:okhttp:2.2.0'
我需要 2.2.0 版中的 okhttp 才能使我的代码正常工作。但是当我添加时我遇到了问题
compile('io.intercom.android:intercom-sdk:1.1.2@aar') {
transitive = true
}
因为在 intercom-sdk 内部对于更高版本再次存在 okhttp 依赖项:
compile 'com.squareup.okhttp:okhttp:2.4.0'
这导致我的代码使用更高版本的 2.4.0 而不是我想要的 2.2.0。请问有什么方法可以在我的模块中使用我指定的 2.2.0 并让对讲机使用它的 2.4.0?