gpt4 book ai didi

android - 用于调试 buildType 的自定义字符串

转载 作者:太空宇宙 更新时间:2023-11-03 11:26:54 25 4
gpt4 key购买 nike

我有一个 Android 应用程序,我想更改调试和其他 buildTypes 的应用程序标签。我没有任何口味!

这是我认为应该有效的设置: Android Studio Setup

-src
|-debug
|-res
|-values
|-strings.xml
|-main
|-res
|-values
|-strings.xml
|-java
[...]

我没有自定义源集,只有调试 buildType:

buildTypes {
debug {
applicationIdSuffix ".debug"

}
}

所以我想

sourceSets.debug.res.srcDirs = ['src/debug/res'] 

会成功的。但事实并非如此。有什么想法吗?

How to change app name per Gradle build type不再工作了......

最佳答案

我找到了另一个很好的解决方案,使用 list 占位符:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:label="${applicationLabel}">
<activity
android:label="${applicationLabel}">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>

在你的 gradle 文件中:

android {
defaultConfig {
manifestPlaceholders = [ applicationLabel:"@string/app_name"]
}
buildTypes {
debug {
applicationIdSuffix ".debug"
manifestPlaceholders = [ applicationLabel:"MyApp Debug"]
}
}
}

关于android - 用于调试 buildType 的自定义字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26032950/

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