我看到Gson的新版本问世,所以我决定指出它。 我转自
compile 'com.google.code.gson:gson:2.7'
到
compile 'com.google.code.gson:gson:2.8'
然而,即使它处于2.7罚款状态,gradle也无法找到2.8。 Maven中央存储库已经有很长时间了2.7
答案 0 :(得分:1)
虽然
compile 'com.google.code.gson:gson:2.7'
工作,导入你需要的gson 2.8
compile 'com.google.code.gson:gson:2.8.0'
(最后.0
)