2017-03-14 61 views
1

我看到一個新版本的Gson出來了,所以我決定指出它。 我從將gson依賴從2.7升級到2.8失敗

compile 'com.google.code.gson:gson:2.7' 

切換到

compile 'com.google.code.gson:gson:2.8' 

的gradle但未能找到2.8,即使它與2.7工作得很好。 Maven的中央資料庫已經有2.7了很久

回答

1

雖然

compile 'com.google.code.gson:gson:2.7' 

合作,導入GSON 2.8需要

compile 'com.google.code.gson:gson:2.8.0' 

(與.0末)