gpt4 book ai didi

安卓/ Gradle : App name based on build type *and* product flavor

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:00:39 25 4
gpt4 key购买 nike

我有 3 种构建类型(调试、UAT 和发布)和 2 种风格(国际和本地)。

我在名为“product_name.xml”的 xml 文件中定义了我的应用名称:

<resources xmlns:tools="http://schemas.android.com/tools"
tools:ignore="MissingTranslation">

<string name="app_title">Awesome App</string>

</resources>

我想根据构建变体(构建类型 + 风格)更改应用名称。例如:

  • 对于变体 InternationalDebug -> Awesome App (intl) debug
  • 对于变体 InternationalUAT -> Awesome App (intl) UAT
  • 对于变体 LocalUAT -> Awesome App (local) UAT

等等。

我该怎么办?我看到的所有示例都向我展示了如何根据构建类型或风格更改名称,但不是两者。

最佳答案

您可以为您的变体创建 src 文件夹并将您的自定义字符串放在那里:

src
|-> InternationalDebug
| |->res/values/strings.xml <-- place your app_title here
|-> LocalUAT
| |->res/values/strings.xml <-- place your app_title here
|-> main (contains your main source code.

关于安卓/ Gradle : App name based on build type *and* product flavor,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31068971/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com