How to change R.string.app_name at run time?
I finding out my Android app’s version from manifest file. Now I want to get this string
R.string.app_name from res folder. I want to append my app’s version with this app_name on the run time.
Are we allowed to do so in Android?
No, this is not possible as all R.. resources are defined as constants in your R.java file . These are not edited by Android later on.