Problem
The comments of my XML string arrays are duplicated for each item, causing my file size to expand:
<!--List of fruits-->
<string-array name="fruits_array">
<item>Apple</item>
<item>Banana</item>
</string-array>
Becomes:
<!--List of fruits-->
<string-array name="fruits_array">
<!--List of fruits-->
<item>Apple</item>
<!--List of fruits-->
<item>Banana</item>
</string-array>
Answer
For string arrays, each item is treated as a separate phrase on our platform and comments for each phrase may be modified at any time. Therefore we duplicate the comments for each item.
Comments
1 comment
I am also facing exact same issue. Is your issue resloved? My Fortiva Account
Please sign in to leave a comment.