将 Gson 添加到你的项目中
dependencies {
compile 'com.google.code.gson:gson:2.8.1'
}
要使用最新版本的 Gson
下面的行将在每次编译时编译最新版本的 gson 库,你不必更改版本。
优点: 你可以使用最新功能,速度和更少的错误。
缺点: 它可能会破坏与代码的兼容性。
compile 'com.google.code.gson:gson:+'
dependencies {
compile 'com.google.code.gson:gson:2.8.1'
}
要使用最新版本的 Gson
下面的行将在每次编译时编译最新版本的 gson 库,你不必更改版本。
优点: 你可以使用最新功能,速度和更少的错误。
缺点: 它可能会破坏与代码的兼容性。
compile 'com.google.code.gson:gson:+'