Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以编写 build.gradle 文件以仅对一种构建风格启用资源收缩?目前我们可以启用每个构建类型的收缩,我们可以有每个风味的构建类型吗
gardle构建系统中有三个概念。
gardle
构建类型 构建风味 构建变体
Build varinat 是 Build type 和 build falvor 的组合。
例如,您有发布和调试构建类型,并且您有免费和付费的 falvors。
将有四个构建变体
免费调试免费发布付费 调试 付费 发布
如果您的release构建类型是收缩的,您可以添加命名为realese2不收缩的新版本,将添加两个构建变体
release
realese2
免费发布2 付费 发布2
当您想要缩小构建falvorRelease而不希望缩小构建时falvorRelease2
falvorRelease
falvorRelease2