I have the localized strings file that is used in the Iphone app that I work on to port to Android. Are there any tools that go through the file taken from the xcode project and build the xml needed to use the strings in android?
As the apple file is a simple key value file is there a tool that converts string in this format
“key”=”value”
to this:
<string name="key"> value </string>
This tool should be easy to build but I appreciate any pointers to already working tools.
Ok i wrote my own little converter using a little bit from the code from alex.
It was a little bit tricky to get Java to correctly read and write the UTF 16 input I got out of the xcode project but now it is working like a charm.