适合多个客户的 Android 构建配置
我有一个 Android 应用程序需要交付给多个客户。 对于每个客户,我都有不同的图形和配置 XML 文件,其中指定了功能和 URL。
在构建时,我们应该能够指定应为其构建应用程序的客户。然后,应将适合指定客户端的资源(例如图像和运行时配置)内置到应用程序中。
该项目是使用 Maven 构建的。
有什么想法吗?
I have Android application that needs to be delivered to multiple customers.
For every customer I have different graphics and configuration XML files which specify features and URLs.
At build time we should be able to specify the customer for which the application should be built. Then resources (like images and run-time configuration) appropriate for the specified client should be built into the app.
The project is build with Maven.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我最终使用了 maven 配置文件以及 android maven 插件的“renameManifestPackage”和“resourceOverlayDirectory”属性。
默认 res/ 目录被特定于每个客户的“resourceOverlayDirectory”覆盖。
效果很好。
在构建中我有:
I ended up using maven profiles and 'renameManifestPackage' and 'resourceOverlayDirectory' properties of the android maven plugin.
The default res/ dir is overriden by 'resourceOverlayDirectory' specific for every customer.
It worked out great.
and in the build I have:
不知道 Android 项目对此的支持程度如何,但通常的方法是为每个客户定义一个配置文件。在每个配置文件中,您应该使用指定客户的资源目录覆盖相关资源目录。
Don't know how well this is supported for Android projects, but the usual way is to define a profile for each customer. In each profile you should override the relevant resource directories with the ones for the specified customer.