How would I store some language independent values like website address in an Android project. I am currently storing it inside my strings.xml. This does not look good as if I add another language and translations, this entry will still have the same value and will be duplicated.
I would also like to get some tips on creating Android projects with I18N in mind.
You don’t need to create the same keys in the translated xml file again. If Android does not find
linkin the German/Spanish/Whatever language file, it will fall back to the original key stored in the defaultstring.xml.I suggest to implement the English version first and after that let someone translate it.