- 1、本文档共46页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Android System ProgrammingTips and Tricks Tim Bird Sony Network Entertainment, Inc. tim.bird (at) Overview Intro to Android Working with Source Interacting with the Target Debug and Trace tools Performance tools Random thoughts on Android Resources Intro to Android Google runtime on top of Linux Android device proliferation Working With Source Working with Source Git Repo Build System Building fast Adding a program to the build Git Android open source project uses git You need to learn to use git well, really Need to know how to do a git rebase especially for kernel patches git rebase -i Kernel patch rebase needed for moving kernel versions, porting work, etc. Lots of online resources Recommended online book: /book/ Repo Export REPO_TRACE=1 is handy to see what git commands are happening Repo tricks Repo forall -c git diff remote_branch Repo forall -c echo $REPO_PATH;git remote -v Use to see upstream remotes from which to compare and merge with. Repo manifest -r -o my-tag-file.xml Make a repository snapshot manifest Build system Lots of interesting stuff in build/envsetup.sh help choosecombo/lunch jgrep/cgrep godir Interesting make targets: showcommands – psuedo-target to show build commands sdk – can build the SDK from scratch Fast building Parallel make threads make -j6 Use 2 more than your number of CPUs (include hyperthreaded CPUs) Compiled output cache ccache is in /prebuilt area export USE_CCACHE=1 Great for rebuilds (21 minutes on my desktop) Make only a specific module mm – build only the module(s) in the current directory (and below) I usually combine with a custom install script, which copies from out/target/product/board Adding a program to the build Make a directory under external e.g. android/external/myprogram Create your C/cpp files. Create Android.mk as clone of external/ping/Android.mk Change the names ping.c and ping to match your C/cpp files and program name Add the directory name in ANDROID/build/core/main.mk after external/zlib as externa
您可能关注的文档
- 第一步双击MainUI.prj,打开工程文件分解.doc
- 实验1Java运行环境的下载、安装、配置与运行摘要.doc
- 关于需求分析及目标.doc
- 浅谈变更登记网上申请指南.doc
- 广东省地方税务局发票在线应用系统指南.doc
- 第六课Authorware.ppt
- 文档类别说明文档详解.doc
- 第2讲本地用户和组的管理.ppt
- 渝中区湖广会馆及东水门历史文化街区改造工程(东水门大桥解说.doc
- 2010年质量高层论坛打造有竞争力的质量.ppt
- 《GB/Z 44363-2024致热性 医疗器械热原试验的原理和方法》.pdf
- GB/T 16716.6-2024包装与环境 第6部分:有机循环.pdf
- 中国国家标准 GB/T 44376.1-2024微细气泡技术 水处理应用 第1 部分:亚甲基蓝脱色法评价臭氧微细气泡水发生系统.pdf
- 《GB/T 44376.1-2024微细气泡技术 水处理应用 第1 部分:亚甲基蓝脱色法评价臭氧微细气泡水发生系统》.pdf
- GB/T 44376.1-2024微细气泡技术 水处理应用 第1 部分:亚甲基蓝脱色法评价臭氧微细气泡水发生系统.pdf
- 中国国家标准 GB/T 44315-2024科技馆展品设计通用要求.pdf
- GB/T 44305.2-2024塑料 增塑聚氯乙烯(PVC-P)模塑和挤塑材料 第2部分:试样制备和性能测定.pdf
- 《GB/T 44315-2024科技馆展品设计通用要求》.pdf
- GB/T 44315-2024科技馆展品设计通用要求.pdf
- GB/T 39560.9-2024电子电气产品中某些物质的测定 第9 部分:气相色谱-质谱法(GC-MS)测定聚合物中的六溴环十二烷.pdf
文档评论(0)