Reputation:
I have done localization in my PCL project , in my PCL there is a resource folder contain two resource one default English and other Arabic the culture is ar-AS. I can run it on my emulator but not in device what should be the reason. I'm now on android project
Upvotes: 2
Views: 260
Reputation:
it was the problem of my Language Culture Name, i added Language Culture Name "ar-sa" this was not need i just removed the SA it work nicely
Upvotes: 0
Reputation: 89082
Doesn't work in DEBUG mode (Android only)
If the translated strings are working in your RELEASE Android builds but not while debugging, right-click on the Android Project and select Options > Build > Android Build and ensure that the Fast assembly deployment is NOT ticked. This option causes problems with loading resources and should not be used if you are testing localized apps.
Upvotes: 2