If you look in the Android documentation for localization, it mentions saving the application resource string in an xml file. There seem to be some hardcoded values ββin android Xamarin.Forms Resource.Designer.cs. To fix it in the resource folder by values, add an XML file called String.xml and put in it:
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="ApplicationName">ApplicationName</string> <string name="Hello">Hello</string> </resources>
source share