有没有更简单的方法将gson添加到我的项目中?

时间:2015-04-09 21:30:40

标签: android

如何使用gradle将gson添加到我的项目中?我只看到人们向他们的项目添加文件。我不想下载项目并将其放入我的项目中。

4 个答案:

答案 0 :(得分:34)

在app / build.gradle中:

 dependencies {
    compile 'com.google.code.gson:gson:2.8.2'
}

答案 1 :(得分:4)

将以下内容添加到项目的build.gradle

repositories {
    mavenCentral()
}

dependencies {
    compile 'com.google.code.gson:gson:2.8.0'
}

Here是更多信息的链接。

答案 2 :(得分:2)

如果您使用的是Android Studio,则可以使用以下工作流程来代替手动更改Gradle文件:

  1. 文件->项目结构->模块->应用->依赖项标签
  2. 点击左下角的“ +”,然后选择“库依赖项”
  3. 在搜索字段中输入:“ gson”,然后单击“搜索”
  4. 选择“ com.google.code.gson:gson:2.8.5”

enter image description here

答案 3 :(得分:0)

compile已过时,改为使用implementation

dependencies {

    implementation 'com.google.code.gson:gson:2.8.5'

}

P.S。版本08/07/2019