在 OkHttp 存储库中有一个名为 okhttp-coroutines 的 Gradle 模块,但我不确定它是否已发布到 Maven,因为我尝试使用它并且没有收到任何错误,但导入
okhttp3.coroutines
无效因为 coroutines
不存在
implementation("com.squareup.okhttp3:okhttp-coroutines:4.12.0")
看起来
okhttp-coroutines
有一个不同的版本(与 okhttp
不同),可以在 Maven 存储库中找到:https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp-coroutines
所以这有效:
implementation("com.squareup.okhttp3:okhttp-coroutines:5.0.0-alpha.14")
我知道这一点要感谢Micheal
我应该在发布问题之前进行更多搜索。