我试图了解在我的项目中导入Gson库有什么问题。我从eclipse切换到android studio,我遇到了这个问题。你知道怎么解决这个问题吗?
我在gradle依赖项
中设置了它compile 'io.gsonfire:gson-fire:1.0.1' <- third attempt
//compile 'com.google.code.gson:gson:2.2.4' <- second attempt
//compile 'com.google.code.gson:gson:2.3.1' <- first attempt
当我试图运行我的应用时,AStudio抛出了这个&#34; java.lang.NoClassDefFoundError:com.github.julman99.gsonfire.GsonFireBuilder&#34;
由于
答案 0 :(得分:1)
从gson-fire 1.0开始,包名更改了。而不是com.github.julman99.gsonfire
,而是io.gsonfire
尝试更改旧包的所有引用,并告诉我它是否有效。