如何改变应用程序的名称每级建设类型

我试图找出一种方法,以便能够改变我的应用程序的应用程序名称每构建类型在 gradle。

例如,我希望调试版本具有 <APP_NAME>-debug,而 qa 版本具有 <APP-NAME>-QA

我很熟悉:

debug {
applicationIdSuffix '.debug'
versionNameSuffix '-DEBUG'
}

然而,我似乎找不到一个 gradle 命令来应用程序的变化时,在启动程序。

77473 次浏览

如果你说的“ app name”是指 <application>上的 android:label,那么最简单的解决方案就是在一个字符串资源(例如,android:label="@string/app_name")上使用该点,然后在一个 src/debug/源集中使用该字符串资源的不同版本。

您可以在 这个样本项目中看到,我在 src/debug/res/values/strings.xml中替换了 app_name,这将应用于 debug构建。release版本将使用 src/main/中的 app_name版本。

应用程序的名称是用户可见的,这就是为什么 Google 鼓励您将它保存在 strings.xml 文件中的原因。您可以定义一个单独的字符串资源文件,该文件包含特定于构建类型的字符串。听起来您可能有一个自定义的 qa buildType。如果不是这样,忽略下面的 qa 部分。

└── src
├── debug
│   └── res
│       └── buildtype_strings.xml
├── release
│   └── res
│       └── buildtype_strings.xml
└── qa
   └── res
       └── buildtype_strings.xml

对于一个更加动态的基于分级的解决方案(例如,在 main 的 strings.xml中设置一个基本的应用程序名称,避免在每种风格/构建类型组合的 strings.xml中重复自己) ,请看我的答案: https://stackoverflow.com/a/32220436/1128600

你可以用这个

 buildTypes {
debug {
applicationIdSuffix '.debug'
versionNameSuffix '-DEBUG'
resValue "string", "app_name", "AppName debug"
}
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
zipAlignEnabled true
resValue "string", "app_name", "AppName"
}
}

您可以在 AndroidManifest.xml 文件中使用 @ string/app _ name

确保从值/文件夹中删除了 App _ name(没有这个名称的条目)。

你可以这样做:

android {
buildTypes {
release {
manifestPlaceholders = [appName: "My Standard App Name"]
}
debug {
manifestPlaceholders = [appName: "Debug"]
}
}
}

然后在你的 AndroidManifest.xml里写:

<application
android:label="${appName}"/>
<activity
android:label="${appName}">
<intent-filter>
<action android:name="android.intent.action.MAIN" />


<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

注意: 它也适用于 productFlavors

为了支持翻译工作,请这样做:

删除字符串“ app _ name”

增加等级

 buildTypes {
admin {
resValue "string", "app_name", "@string/app_name_admin"
}
release {
resValue "string", "app_name", "@string/app_name_release"
}
debug {
resValue "string", "app_name", "@string/app_name_debug"
}
}

3. 将清单中的应用程序名称设置为“@string/app _ name”

4. Add to strings.xml 值

<string name="app_name_admin">App Admin</string>
<string name="app_name_release">App  release</string>
<string name="app_name_debug">App debug</string>

我们需要一个解决方案来支持应用程序名称与本地化(多语言)。 我用@Nick Unuchek 解决方案进行了测试,但是建造失败了(not found@string/)。修正这个错误的一点点改变: Gradle 文件:

android {
ext{
APP_NAME = "@string/app_name_default"
APP_NAME_DEV = "@string/app_name_dev"
}


productFlavors{


prod{
manifestPlaceholders = [ applicationLabel: APP_NAME]
}


dev{
manifestPlaceholders = [ applicationLabel: APP_NAME_DEV ]
}


}

Xml:

<resources>
<string name="app_name_default">AAA prod</string>
<string name="app_name_dev">AAA dev</string>


</resources>

Value-en strings.xml:

<resources>
<string name="app_name_default">AAA prod en</string>
<string name="app_name_dev">AAA dev en</string>


</resources>

Xml:

<application
android:label="${applicationLabel}" >
</application>

可以在不同的文件夹中使用 strings.xml,请参见 Android 将发布和调试构建的字符串值分开

所以,创建这个文件:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Your app name</string>
</resources>

然后粘贴到 app\src\debug\res\values\app\src\release\res\values\文件夹。在调试和发布文件中替换“您的应用程序名称”。从 app\src\main\res\values\文件夹中的 strings.xml中删除 app_name项。

AndroidManifest中,你会得到相同的结果

<application
android:label="@string/app_name"
...

没有任何改变。即使你添加了一个库与它的 AndroidManifest文件和 strings.xml

当作者要求在 格拉德尔中执行此操作时,我们可以假定他希望在脚本中而不是在配置文件中执行此操作。由于 安卓工作室格拉德尔在去年(~ 2018年)都进行了大量的更新和修改,上述所有其他答案似乎都过于扭曲。简单易行的方法是在你的 app/build.gradle中加入以下内容:

android {
...
buildTypes {
...
// Rename/Set default APK name prefix (app*.apk --> AwesomeApp*.apk)
android.applicationVariants.all { variant ->
variant.outputs.all { output ->
def appName = "AwesomeApp"
outputFileName = appName+"-${output.baseName}-${variant.versionName}.apk"
}
}
}

你有很多方法可以做。

您可以在应用程序级别 build.gradle中创建 manifestPlaceholders 或者 resValue

buildTypes {
release {
...
manifestPlaceholders = [appLabel: "My App"]
//resValue "string", "appLabel", '"My App"'
}
debug {
...
manifestPlaceholders = [appLabel: "My App - Debug"]
//resValue "string", "appLabel", '"My App - Debug"'
}
}

或者

如果你有 productFlavors,你可以在那里创建

flavorDimensions "env"
productFlavors {
dev {
dimension "env"
...
manifestPlaceholders = [appLabel: "My App - Development"]
//resValue "string", "appLabel", '"My App - Development"'
}
prod {
dimension "env"
...
manifestPlaceholders = [appLabel: "My Awesome App"]
//resValue "string", "appLabel", '"My Awesome App"'
}
}

然后在 AndroidManifest.xml如果你使用 manifestPlaceholders,只是改变 android:label="${appLabel}"下面的 或者如果你使用 resValue,只是改变 android:label=@string/appLabel

<application
...
android:label="${appLabel}"> //OR `android:label=@string/appLabel`
    

<activity
...
android:label="${appLable}">


<intent-filter>
<action android:name="android.intent.action.MAIN" />


<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

注意: LAUNCHER类的 <activity>中也要改变 android:lable。如果它不需要在 <activity>中使用 android:label,只需删除它。


如果不想直接添加 build.gradle,可以添加所选 ProductFlavorsvalues/string.xml

<string name="appLabel">My App - Development</string>

app/src/dev/res/values/string.xml

还有

<string name="appLabel">My Awesome App</string>

app/src/prod/res/values/string.xml