我不得不重新安装Android Studio 2.1.3,现在我有一些错误。我的一些进口产品缺失了,例如。
android.os.Handler;
google.gson.Gson;
android.util.Log;
如何安装这些库?我尝试了File => project Structure => app => depenencies并搜索了google.gson.Gson,但是工作室没有加载它。其他库未列在依赖项中。我在哪里可以加载它们。
答案 0 :(得分:1)
您不需要在依赖项中添加android.os.Handler和android.util.Log。如果您已经将Gson api添加为
compile 'com.google.code.gson:gson:2.2.4'
只需构建您的项目,类将自动导入,如果没有,则转到您的源代码和行,显示为红色命中alt +输入和导入类。
答案 1 :(得分:0)
确保您使用Android Studio作为管理员,否则升级gradle将失败。 这个答案对我有帮助。
http://stackoverflow.com/questions/18555135/the-best-way-to-integrate-third- party- library-in-android-studio