Conflict strings.xml in Android manifest
I have this in Android Manifest:
<application
android:label="@string/app_name"
...
</application>
and strings.xml:
<string name="app_name">My App Name</string>
Everything is fine. Now my problem is that I am using a dependency aarwhose file strings.xmlcontains an element with a name app_name.
<string name="app_name">My Library Name</string>
And my project uses the second option.
How can I resolve this conflict?
+4
2 answers