Picasso:设置旧版本的 OkHttp3

Picasso: set an older version of OkHttp3

在我们的 Android 应用程序中,我们广泛使用了使用 okhttp3 库的 Picasso 库。

问题是最近 okhttp3 需要 minsdk 21,而我们的应用程序需要从 19 开始,所以我想在使用 Picasso 时设置旧版本的 okhttp3 库(支持 19 的 3.12.X) .

有什么办法可以实现吗?

你能试试这个吗?

implementation ('com.squareup.picasso:picasso:(VERSION)') {
    exclude group: 'Your OKHTTP package'
}

然后添加您自己的 OKHTTP 版本