In an Android project, the strings.xml file currently contains localized strings that are displayed to the user and system strings like Facebook App ID which are not displayed to the user.
The localized strings are regularly updated and exported from a translation platform.
The issue is that every time the localized strings are exported, the strings.xml file has to be manually updated by adding the system strings to the new strings file. In iOS the localized string resources files can just be replaced without manual editing because the Localizable.strings files are distinct files.
Is it possible to keep localized strings in a separate file, so they can be easily updated by just replacing the whole file?