如何将okhttp库导入到android studio中?

问题描述 投票:0回答:5

我想将 okhttp 源代码(不是 jar)作为模块导入到 android studio 中。对此有何建议?谢谢 !

android android-studio okhttp
5个回答
27
投票

除非您在应用程序中出于某种原因只需要源代码,否则您可以通过添加

将其添加为库
implementation 'com.squareup.okhttp3:okhttp:4.12.0'

您的 Gradle 构建脚本或

implementation("com.squareup.okhttp3:okhttp:4.12.0")

对于kts。


8
投票

将此行添加到您的模块级别

build.gradle
脚本(不是项目级别):

dependencies {
    // ...
    implementation 'com.squareup.okhttp3:okhttp:3.10.0'
}

然后单击右上角的构建图标(绿色斧头)。


2
投票

他们的源代码可以在 Github 上找到:https://github.com/square/okhttp

将其克隆到您的计算机,然后将其导入到您的项目中。


1
投票

OkHttp
是一个java项目,你可以使用idea而不是Android studio。

  1. 开放想法
  2. 项目→打开→选择项目根目录下的
    pop.xml
  3. 稍等一下

0
投票

转到应用程序级别 build.gradle 并添加

对于较老的毕业生

implementation 'com.squareup.okhttp3:okhttp:4.12.0'

对于新版本添加

implementation("com.squareup.okhttp3:okhttp:4.12.0")
© www.soinside.com 2019 - 2024. All rights reserved.