I’m making an Android game and I would like some of the data to be specified via XML, specifically the strings.xml file. Would changes to the data found in the strings.xml file require that I compile the project again before the made changes take effect?
I’m making an Android game and I would like some of the data to
Share
Answer to your question is YES. This is due to you are referring those string in your xml files in form of
@String/somenameso this id must have to be available in yourR.javafile. Thus to reflect changes in yourR.javafile you must have to compile code and may be possible clean project to reflect changes