The QA team on my project asked us to show the string keys instead of the actual values (as we show in any normal app), for testing purposes, but I don't know how to do it.
i.e.:
<string name="BackButton">BACK</string>
They want to see BackButton instead of BACK
And they want for all strings on the strings.xml file (600 lines so far).
I found some answers like this:
int resID = getResources().getIdentifier(resourceName, "string", getPackageName());
textview.setText(resID);
But even if I use the first example with getIdentifier, how would I do this for the whole project?
Project is on Android using Kotlin