gpt4 book ai didi

android - 我们如何在 android 中拥有条件资源值?

转载 作者:行者123 更新时间:2023-11-30 01:56:02 24 4
gpt4 key购买 nike

我需要访问字符串的条件资源值,如下所示:

<资源>
字符串 1
....
if (defaultVariableValue=val_1)
测试应用程序 key
其他
Live App Key
.....


最佳答案

在模块的 build.gradle 中使用产品风格:

android {
compileSdkVersion xx
buildToolsVersion "xx.x.x"
defaultConfig {
minSdkVersion xx
targetSdkVersion xx
versionCode x
versionName "xxxxxxxxx"
}
productFlavors {

testing{
applicationId = "com.example.testing"
resValue "string", "resString", " Test Application Key "
}

live{
applicationId = "com.example.live"
resValue "string", "resString", " Live Application Key "
}
}
}

然后在您的代码中调用 getResources().getString(R.string.resString); 根据构建,它会为您提供测试或实时 key 。

关于android - 我们如何在 android 中拥有条件资源值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32202141/

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