android 编译环境 & 开发教程 【持续更新】
一. 优秀博文推荐
1.ubuntu 搭建 android源码编译环境
ubuntu14.04LTS android 源码编译环境的搭建
2.开源网站
2.android 开源 网站
3.官方参考链接
- 环境:http://source.android.com/source/initializing.html
- 下载:http://source.android.com/source/downloading.html
- 编译:http://source.android.com/source/building-running.html
- 分支:https://android.googlesource.com/platform/manifest
二.开发环境
1.java sdk 的下载
http://www.oracle.com/technetwork/cn/java/javase/downloads/jdk7-downloads-1880260.html
2.android 网站
(1). android 系统源码网站
http://androidxref.com/
(2). 国外 google android 开发者网站
http://developer.android.com/index.html
(3). 国内 android 网站
http://wear.techbrood.com/index.html
(4). 新浪 android sdk 下载网站
http://android-sdk.en.softonic.com
(5). Eclipse android adt 地址:
http://dl-ssl.google.com/android/eclipse
3.git 的配置
(1). git log 的显示看起来很不雅观,使用下面的命令可以看起来更cool
git log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
或者修改 ~/.gitconfig
加入下面的代码
[alias]
lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
然后我们再使用 git lg 就可以显示完美的效果了。
使用下面的命令就可以 在log中查看哪一行被修改了。
git lg -p
三.导入源码
1.导入android 系统源码到 eclipse 中
cd android_5.
cp development/ide/eclipse/.classpath .
chmod u+w .classpath && echo "Make the copy writable"
然后打开eclipse,导入Android的代码风格文件 android-formatting.xml
Windows->Preferences->Java > Code Style >formatter
然后选择Android过程下面的development/ide/eclipse/android-formatting.xml
然后再在Code Style中的 Organize Import中导入development/ide/eclipse/android.importorder
在ECLIPSE中的新建一个JAVA工程,工程名称可以自己随便填,这里使用Android
最重要的一步是不要使用默认的工程路径,不要沟选"use default location",要使用ANDROID的代码所在的顶层目录.
然后点击Finish,过段时间就可以看到整个ANDROID工程的代码了。
如果想要查看更多的工程代码,还可以修改.classpath文件,将需要查看的工程路径加入进去。
2.导入源码过程中遇到错误
1.Project 'Android' is missing required library: 'packages/apps/Calculator/arity-2.1.2.jar'
下载下面的 jar 包 解压,并
cp arity/arity-2.1..jar packages/apps/Calculator/
arity-2.1.2.jarAndroid自带计算器的计算引擎及源码
2.Project 'Android' is missing required library: 'packages/apps/ContactsCommon/libs/libphonenumber-5.8.jar'
cp libphonenumber-5.8.jar packages/apps/ContactsCommon/libs/
libphonenumber-5.8.jar maven依赖
四.android 命令
1.adb shell 命令
adb logcat -b main -v time>app.log 打印应用程序的log
adb logcat -b radio -v time> radio.log 打印射频相关的log,SIM STK也会在里面,modem相关的ATcommand等,当然跟QXDM差的很远了。
adb logcat -b events -v time 打印系统事件的日志,比如触屏事件。。。
//android log的抓取
adb logcat
//kernel log的抓取
adb shell cat /proc/kmsg
//log 信息的保存
mkdir /data/anr
logcat *:V > /data/anr/android
demsg >/data/anr/kernel
//按ctrl+c结束log输出
adb pull /data/anr ./log/
五.Android FrameWork介绍
1.Android Animation
六.开发学习
1.Android系统目录下 各jar包作用
本博客持续update...
2015-07-14
android 编译环境 & 开发教程 【持续更新】的更多相关文章
- windows下cocos2dx3.0开发环境及Android编译环境搭建
cocos2dx更新到了3.x版本号,自己一直没有换,如今开发组要求统一换版本号,我就把搭建好开发环境的过程记录下来. 一.Windowns下开发环境搭建 1. 所需工具 1)coc ...
- Protobuf实现Android Socket通讯开发教程
本节为您介绍Protobuf实现Android Socket通讯开发教程,因此,我们需要先了理一下protobuf 是什么? Protocol buffers是一种编码方法构造的一种有效而可扩展的格式 ...
- Android编译环境——ubuntu12.04上android2.3.4编译错误以及解决
Android编译环境——ubuntu12.04上android2.3.4编译错误以及解决 分类: android应用开发2013-08-21 09:20 4222人阅读 评论(3) 收藏 举报 li ...
- Android编译环境配置
Android编译环境配置 网上关于Android编译环境配置的整理资料有不少,经整理亲测后,希望能给需要的亲们提供帮助. 主要分为四步: 1.安装JDK(Java Standard Edition ...
- Docker容器搭建android编译环境
Docker容器搭建android编译环境 目录 1 部署容器 1.1 手动部署 1.1.1 配置docker 1.1.2 启动容器 1.1.3 配置环境 1.2 Dockerfile 2 镜像管理 ...
- Android OpenGL ES 开发教程 从入门到精通
感谢,摘自:http://blog.csdn.net/mapdigit/article/details/7526556 Android OpenGL ES 简明开发教程 Android OpenGL ...
- Android编译环境(1) - 编译Native C的模块
Android编译环境本身比较复杂,且不像普通的编译环境:只有顶层目录下才有Makefile文件,而其他的每个component都使用统一标准的Android.mk. Android.mk文件本身是比 ...
- android编译环境安装
Android 编译环境安装 安装 Java 6 安装 Java 6 安装依赖包 (Ubuntu 12.04) $ sudo apt-get install git gnupg flex bison ...
- Android源码编译常见错误(持续更新)
本文为个人工作中处理遇到的编译问题做个小结,后续遇到新的问题,持续更新. No such file or directory: 1. 检查路径是否有问题,文件是否存在,若文件存在且路径没问题 2. 检 ...
随机推荐
- Git与TortoiseGit使用方法
下载这两个工具 Git地址:https://git-for-windows.github.io/ TortoiseGit地址:http://tortoisegit.org/ 点击 ...
- asp.net发送短信
public class SmsServiceManager { public static string Send(string PhoneNumber, out string sendNo) { ...
- 20145321 《Java程序设计》课程总结
20145321 <Java程序设计>课程总结 读书笔记链接汇总 第一周读书笔记 第二周读书笔记 第三周读书笔记 第四周读书笔记 第五周读书笔记 第六周读书笔记 第七周读书笔记 第八周读书 ...
- 20145324 《Java程序设计》第10周学习总结
20145324 <Java程序设计>第10周学习总结 教材学习内容总结 1.网络编程的实质就是两个(或多个)设备(例如计算机)之间的数据传输 2.在实际传输数据以前需要将域名转换为IP地 ...
- 2017阿里C++研发工程师-校招-单词匹配
题目描述 给一个字符串, 然后给一个字典. 把字符串分解成字典里的单词组成的句子, 请输出所需空格最少的方案.并输出该方案. 样例 例如: 字符串为: str="ilikealibaba&q ...
- /usr/bin/ld: crti.o: No such file: No such file or directory
Problem : You are running a 64-bit linux system and trying to compile a 32-bit application and you g ...
- Qt+VS编译出错:Two or more files with the name of moc_Geometry.cpp will produce outputs to the same location
warning MSB8027: Two or more files with the name of moc_Geometry.cpp will produce outputs to the sam ...
- UBUNTU的默认root密码是多少,修改root密码
UBUNTU的默认root密码是多少,修改root密码 | 一.Ubuntu的默认root密码是随机的,即每次开机都有一个新的root密码.我们可以在终端输入命令 sudo passwd,然后输入当前 ...
- hdu5727
Necklace SJX has 2*N magic gems. N of them have Yin energy inside while others have Yang energy. SJX ...
- mathematical method
mathematical method 曲线拟合 指数 \(lnY = lna + bX\) 对数 \(Y = blnX + a\) 幂函数 \(lgY=lga+blgX\) 多元线性回归模型 回归分 ...