appium-boneyard/appium_apk_tools

Does not support aliasing of strings

Opened this issue · 0 comments

It is perfectly legal and highly desirable to eliminate duplication to define one string that simply refers to another string as in:

<string name="foo">foo</string>
<string name="bar">@string/foo</string>

That works in Android. However the JSON file generated by this tool will generate:

"foo":"foo",
"bar":null