victoreronmosele/flutter_native_strings

Generate Android String Resource From Simple ARB file

Closed this issue · 1 comments

This task is to generate an Android string resource from a simple ARB file.
This means extra stuff like formatting and plurals won't be taken into account.

For example an ARB file with the following:

{
  "helloWorld": "Hello World!"
}

should generate an Android string resource android/app/src/main/res/values/strings.xml with the content below:

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="helloWorld">Hello World!</string>
</resources>