In my current lines of the Android project, the ones mentioned below are used based on the product:
<string name="insert_sd_card" product="nosdcard">"Por favor, inserte una tarjeta SD" </string>
<string name="insert_sd_card" product="default">"Por favor, inserte una tarjeta SD"</string>
When I started the Gradle construct (tried with 0.7, 0.8, 0.9), I get the following error:
* \ res \ values-es \ strings.xml: Error: found String / insertsdcard element more than once
source
share