I have a xml file in my xml app folder with entries like this:
<defaultsMap>
<entry>
<key>latest_gplay_app_version</key>
<value>5.3</value>
</entry>
</defaultsMap>
I would like to replace <value>5.3</value> with something like:
<value>"@string/latest_version"</value>
so that the value is automatically set to the latest_version string defined in my strings.xml file
How can I di this ?
Thanks !