<resources> // это в values/strings.xml
<string name="bomba">z2df21ffg231ffz</string>
</resources>
// это в MainActivity.kt
var userInputValue = "bomba"
var secretKey = R.string.userInputValue
val resId = context.resources.getIdentifier("bomba", "string", packageName)
if (resId != 0) {
val secretKey = context.getString(resId)
// ...
}