I am working on Xamarin iOS/Android and also have PCL project for portable class library. What I need is to use RESX files of PCL projects in Xamarin iOS/Android. My project is not Xamarin.Forms, so this link doesn't work for me. [Localizing Xamarin.Forms Apps with RESX Resource Files][1]
I don't want to use separated files on iOS and android for multi-language support.
My idea is as following:
1) Create two RESX files for english and chinese in PCL project.
AppResources.resx
AppResources.zh-CN.resx
2) Load RESX files from iOS and Android projects.
3) When the language is swichted in my app, change UI languages.
But I cannot find the exact way. I will be happy if you can help me.