我想将 okhttp 源代码(不是 jar)作为模块导入到 android studio 中。对此有何建议?谢谢 !
除非您在应用程序中出于某种原因只需要源代码,否则您可以通过添加
将其添加为库implementation 'com.squareup.okhttp3:okhttp:4.12.0'
您的 Gradle 构建脚本或
implementation("com.squareup.okhttp3:okhttp:4.12.0")
对于kts。
将此行添加到您的模块级别
build.gradle
脚本(不是项目级别):
dependencies {
// ...
implementation 'com.squareup.okhttp3:okhttp:3.10.0'
}
然后单击右上角的构建图标(绿色斧头)。
他们的源代码可以在 Github 上找到:https://github.com/square/okhttp
将其克隆到您的计算机,然后将其导入到您的项目中。
OkHttp
是一个java项目,你可以使用idea而不是Android studio。
pop.xml
转到应用程序级别 build.gradle 并添加
对于较老的毕业生
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
对于新版本添加
implementation("com.squareup.okhttp3:okhttp:4.12.0")