How to automate android builds for lite and premium version?

大兔子大兔子 提交于 2019-12-20 14:09:06

问题


I'm looking for a solutions which will allow me to build lite and premium versions of my android app without manual manipulations. The functionality I'm looking for is:

  • Automatically renaming package
  • Changing home package name in AndroidManifest.xml file.
  • Changing constant values in java or/and resource files or substituting appropriate files for current application version.

Thanks.


回答1:


I would suggest looking into Android Library Projects to help with this.

I use this approach for a Lite vs. Free edtions of one of my apps. I have a Library project that contains all of the source and most of the resources for the apps and then 2 projects that use the 1st as a library project, one for Lite and one for Full edition.

The two dependent projects each have their own resources and manifest, allowing the namespace to be different and for me to swap in different strings, drawables, etc. depending on the edition.

I tried the Ant approach but it seemed to be much more of a hassle than the Library project approach. Hope that helps.

Note that Ant is still used to build each of the projects, but not part of the solution for separating editions.




回答2:


I strongly suggest you the use of an ant build for this. I have described in one article step by step the Once Click Build technique. The article covers also the creation of Java files based on parameters, copy files etc.

http://www.androider.ro/cum-fac-un-build-automat-cu-ant-in-android-ocb-one-click-build-1501




回答3:


I use Ant for this.

I have three directories containing source and resources:

/common
/lite
/full

Before building I merge the appropriate two trees together in a temporary directory and build that.



来源:https://stackoverflow.com/questions/5274211/how-to-automate-android-builds-for-lite-and-premium-version

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!