
开发环境搭建
$以梦为马$
做难事必有所得!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
AOSP代码管理
We (Google) routinely develop on multiple branches at the same time. In order to make sure that the later branch (e.g. ics-mr1) contains all the new features and bugfixes developed in an older branch (e.g.ics-mr0), we have a server that automatically takes转载 2020-03-23 16:10:56 · 2026 阅读 · 0 评论 -
SVN Eclipse插件Subclipse安装和配置 .
一、安装Subclipse 安装Subclipse的最好方法是使用Eclipse Update Manager。在Eclipse 3.2中,它位于Help -> Software Updates -> Find and Install...菜单下。 选择搜索要安装的新功能部件,点击新建远程站点,弹出图1,在URl输入框输入http://subclipse.tigris.org/update作为原创 2013-03-02 18:00:21 · 1115 阅读 · 0 评论 -
用Chrome浏览器打开本地DOM应用,报Load page error,页面不跳转
当用chorome浏览器打开HTML5本地开发的跨平台多页面本地应用时,打开以一个页面正常,但是点击进行AJAX也卖弄跳转时,总是会包Load page error的错误,而且不会跳转页面, 这是浏览器的安全权限导致的问题,只需要按照以下设置方法设置浏览器权限即可以解决: 方法一:在桌面上右击chrome图标,如图 在目标的后面添加上字符串:--disable-web-security,原创 2013-07-26 15:01:45 · 3773 阅读 · 0 评论 -
Linux Ubuntu 下安装配置 JDK7
1.下载JDK 地址:http://www.oracle.com/technetwork/java/javase/downloads/java-se-jdk-7-download-432154.html,我是把JDK安装到这个路径:/usr/lib/jvm,如果没有这个目录(第一次当然没有),我们就新建一个目录: cd /usr/lib sudo mkdir jvm 建立好了以后,我原创 2013-11-04 11:37:58 · 796 阅读 · 0 评论 -
ubuntu系统中安装搜狗输入法
安装sougou for linux: 1.卸载原有的输入法,fcitx或ibus。如卸载fcitx: sudo apt-get remove fcitx*(如不需保留配置文件用purge) sudo apt-get autoremove(自动卸载依赖软件) sudo dpkg –get-selections | grep fcitx(查询fcitx相关的软件包是否卸载) 2.通过软原创 2013-12-10 16:03:23 · 1144 阅读 · 0 评论 -
用Insight3打开一个新的工程
有一个空白工程,想用Insight3打开,原创 2014-04-24 21:26:27 · 1502 阅读 · 0 评论 -
error = 13 permission denied while attempting to get adb version 解决方案
打开adb 所在的目录,右击adb ,勾选相关权限选项:原创 2017-07-03 16:40:12 · 1121 阅读 · 0 评论 -
Eclipse 添加GBK编码
Windows PC上编写的Android代码导入到Linux平台上Eclipse显示乱码,原因是Windows默认编码格式是UTF-8; 而Linux平台默认编码格式是GBK,解决办法: 首先Windows->Preferences, 然后选择General下面的Workspace. Text file encoding选择Other GBK, 如果没有GBK的选项, 没关系, 直接原创 2017-10-16 14:36:56 · 4431 阅读 · 0 评论