编译模块
android中的一个应用程序可以单独编译,编译后要重新生成system.img
在源码目录下执行
. build/envsetup.sh
(.后面有空格)
就
多出一些命令:
- croot: Changes directory to the top of the tree.
- m: Makes from
the top of the tree.
- mm: Builds all of the modules in the current
directory.
- mmm: Builds all of the modules in the supplied directories.
- cgrep: Greps on all
local C/C++ files.
- jgrep: Greps on all local Java files.
- resgrep: Greps on all
local res/*.xml files.
- godir: Go to the directory containing a file.
可以加—help查看用法
我们可以使用mmm来编译指定目录的模块,如编译联系人:
mmm
packages/apps/Contacts/
编完之后生成两个文件:
out/target/product/generic/data/app/ContactsTests.apk
out/target/product/generic/system/app/ Contacts.apk
可以使用make snod重新生成system.img
再运行模拟器
本文详细介绍了在Android开发中如何通过命令行工具进行应用编译,并生成system.img文件的过程。包括使用.build/envsetup.sh脚本,以及如何使用特定命令如-croot、-m、-mm等进行模块编译,最终生成ContactsTests.apk和Contacts.apk文件,以及如何使用makesnod重新生成system.img文件。
652

被折叠的 条评论
为什么被折叠?



