最近要搞Androd Framework开发,相比App,麻烦的就是每次编译的Framework.jar,都要手动push到Emulator或手机上,然后重启到进Launcher,要等好久。
反复的编译, push ,重启,浪费了很多时间。这种低效率的开发方式,实在受不了。。。
有没有快速的开发环境呢?
上网搜索,参考下面的链接:
What If Ubuntu Could Run Android Applications? It Can. 可以直接在Ubuntu下运行Android应用,而不是传统的Ubuntu上运行虚拟机,再在虚拟机上跑Android。 StackOverFlow: Is there an Android simulator (not the default emulator), similar to the iPhone one? 提到了simulator,貌似编译的时候有这个选项。
下载完Android 源码后,我下的是Android 1.6.1版本。执行source build/envsetup.sh,然后lunch 会提示
Lunch menu... pick a combo: 1. generic-eng 2. simulator
平常都选generic-eng,从没试过simualtor,关于simulator,网上也啥没有帖子介绍过。
不管了,先试下吧,编译果然有很多错误。
经过1个星期的折腾,基本可以正常运行了。
改动的地方:
patch如下:
Framework的patch: https://fillzero.github.io/assets/0001-1.6.1_frameworks_base.patch development的patch: https://fillzero.github.io/assets/0001-1.6.1_development.patch.txt
编译出来的simulator放在 out/host/linux-x86/bin/下面 运行命令: out/host/linux-x86/bin/simulator
这样整个Android系统在Ubuntu下只是个普通进程,可以很方便的用gdb,jdb进行调试
体验: