CLI conversion from json to android adds wrapping double quotes to resource

Hey,

in localazy we have a .json file which holds all of our key-value-pairs. When I download and convert this file via CLI to type android it adds double quotes around the value in the resulting .xml file.

<string name="EXAMPLE">"example"</string>

ā†’ These double quotes are NOT present in the source file and are added to every single key-value pair.

Here is my download configuration:

{
  "download": {
    "includeSourceLang": true
  },
  "conversion": {
    "actions": {
      "type": "android",
      "output": "/src/main/res/values/${file}",
      "changeExtension": "xml"
    }
  }
}