How can I make my app to ignore certains configurations, for example, the device's language (forcint the app to use default strings)
For better understanding thats the concret problem:
I have a Android Library project with some strings in the strings.xml file
That library have the strings in english, german, french and spanish.
I want use the library in an app but this app only supports english and german so I'd like to ignore the strings provided by the library project in french and spanish in order to avoid a partial traduction
Is that possible without magical workarrounds?
Thanks