Android基础之配置开发环境报错

 

博客出自:http://blog.csdn.net/liuxian13183,转载注明出处! All Rights Reserved ! 

 

原因:

最新的api出了一个这样的内容

adb_has_moved.txt

The adb tool has moved to platform-tools/If you don't see this directory in your SDK,launch the SDK and AVD Manager (execute the android tool)and install "Android SDK Platform-tools"Please also update your PATH environment variable toinclude the platform-tools/ directory, so you canexecute adb from any location.

 导致我下载不了api,更新出现问题。

解决办法如下:

1、install new software 将ADT更新网址由https://dl-ssl.google.com/android/eclipse

强制改为http://dl-ssl.google.com/android/eclipse

2、然后进入sdk manager,选择tools,把下面的勾全选上。


电脑蓝屏后,eclipse报“parseSdkContent failed java.lang.NullPointerException”的错误。
解决办法:
把项目存储路径下的.metadata(即:workspace\.metadata)文件删除,重启Eclipse。


后来Eclipse又报an error has occurred.See error log for more details错误
解决办法:
打开cmd,到Eclipes目录下,输入eclipse.exe -clean,重启Eclipse

原文地址:https://www.cnblogs.com/fengju/p/6174498.html