Last active
August 29, 2015 14:00
-
-
Save danhantao/a0fe0a2a0c641bb1af64 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1.安装java环境 | |
计算机->属性->高级系统设置->高级->环境变量 | |
JAVA_HOME=C:\\XXX\ | |
PATH=%JAVA_HOME%\bin; | |
2.验证 | |
CMD: | |
echo %JAVA_HOME% | |
echo %PATH% | |
java -version (JRE环境) | |
javac -version (JDK环境) | |
3.配置android_home | |
ANDROID_HOME=C:\\XXX\sdk; | |
PATH=%ANDROID_HOME%\tools;%ANDROID_HOME%\platform-tools; | |
4.配置eclipse | |
1.配置自动化方式: | |
java:window->preferences->java->editor->content assist->auto activation.... | |
xml:window->preferences->xml->editor->content assist->prompt when these characters... | |
2.字体大小 | |
5.升级eclipse | |
1.https变为:http | |
2.修改host | |
3.vpn | |
# http://blog.sina.com.cn/s/blog_5fc933730101c1x5.html | |
# http://www.super-ping.com/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment