So I have a challenge similar to this post, to change the OK and Cancel button texts on Android and have been reading about Android resources, therefore decided I shall have my \Resources\values\Strings.xml edited in my Android project and containing two dedicated ok/cancel key-values.
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="library_name">My App</string>
<string name="ok">Fine</string>
<string name="cancel">Nope</string>
</resources>
File build action for my XML is set to AndroidResource, although this does not impact the Picker ok/cancel button texts. What have I missed? It has to be working according to docs.
Thanks in advance