I am looking for a function in ObjC to get strings from Android string resources.
I have res/values/strings.xml (Android project):
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="something">Something</string>
<resources>
which can be accessed on Android using
getContext().getString(R.string.something)
I need a tool to convert Android resources to something which can be used with ObjC and a function in ObjC which takes an integer resource id and returns the string.