使用android studio创建调味产品

时间:2015-10-09 05:21:46

标签: android android-productflavors

我想创建不同的产品风格,我想将主应用程序代码用于创建的产品风格。

我已经从this link创建了两种风格但我无法将我的主应用程序代码用于创建的产品风格。

我已经提到了下面的结构包,请告诉我如何使用它。enter image description here

我已将风味代码放在src文件夹中。

提前致谢, 任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

post逐步说明如何配置目录结构和gradle文件。

主要步骤是:

  1. 将产品风味容器添加到应用 build.gradle 文件

    productFlavors { free { applicationId "antoniocappiello.com.buildvariantsexample.free" } paid { applicationId "antoniocappiello.com.buildvariantsexample.paid" } }

  2. 在src内部创建一个目录,其中包含您希望与主变体看起来不同的产品风格的确切名称,例如,在步骤1中的配置,目录名称可以付费免费

  3. Directory structure example