In Xamarin.Android I have String resource translated in German and a default English translation. While the app is running it only obtains strings in German. How do I make it obtain the English translation instead without changing device's locale?
<string name="exampleResource">Example string</string>
<string name="exampleResource">Beispiel string</string>
I need the second translation shown in Xamarin application at runtime.