摘要: l 配置Android源代码下载环境步骤 #mkdir ~/bin #PATH=~/bin/repo #curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo >~bin/repo #chmod a+x~/bin/repo #mkdi 阅读全文
posted @ 2016-04-29 18:45 1305李泽斌 阅读(130) 评论(0) 推荐(0) 编辑
摘要: l Git的基本用法 分为本地版本库和远程版本库,使用Git管理源代码版本时可以不连接Internet,Git直接与本地版本库通信;连接Internet后则与远程版本库通信。 首先要建立一个开源项目的工作目录,并进入 #mkdir –p /demo/helloworld-git #cd /demo/ 阅读全文
posted @ 2016-04-29 18:44 1305李泽斌 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 搭建Android底层开发环境的步骤 l 安装JDK: 1.下载JDK,解压,打开profile设置PATH环境变量 2.#gedit /etc/profile Export PATH= .:/developer/jdk6/bin:$PATH 3.#source /etc/profile # . / 阅读全文
posted @ 2016-04-29 18:42 1305李泽斌 阅读(132) 评论(0) 推荐(0) 编辑
摘要: Android系统架构是由四层构成,第一层为Linux内核,主要包括Linux驱动程序以及内存管理、进程管理、电源管理的等程序。并且不同的Android的版本的驱动可能并不通用。第二层为C/C++代码库,主要包括使用C/C++编写的代码库(Linux下的.so文件),也包括.Dalivak虚拟机的运 阅读全文
posted @ 2016-04-29 18:40 1305李泽斌 阅读(172) 评论(0) 推荐(0) 编辑