I'm porting my iPhone app to android and I'm having a problem with the string files now.The app is a translation tool and users can switch the languages, so all the localized strings are in both languages and they are independent from what locale the OS is running.For iOS version I have different files like de.strings, en.strings and fr.strings and so on. For every target with specified language pair I read the strings from the string tables, e.g. for de-fr I will include de.strings and fr.strings in project and set the name of the string tables in the info-list file and read strings from them. In the end I have one project containing different targets (with different info-list files) and all are well configured.I'm intending to do the same on android platform, but[*]Is only one strings.xml allowed per project?[*]How do I set different build target? e.g. my de-fr and de-en translation app are actually two apps where the only difference is the language pairs. How can I set something so that I can use one project to generate the two apps? In XCode it's simple but I can't find a solution with eclipse.[*]How do I specify per target which strings.xml it should read? Thank you for your answers but Please Note that I need OS locale independent language settings, i.e. if the user changes OS locale from en to de, my app still shows localized strings in English. What I'm asking is actually how I can set something like prebuild and load different string files for different targets.