According to android documentation,
To add support for more locales, create additional directories inside res /. Each directory name must conform to the following format:
<resource type>-b+<language code>[+<country code>]
For instance,
MyProject/
res/
values/
strings.xml
values-b+es/
strings.xml
mipmap/
country_flag.png
mipmap-b+es+ES/
country_flag.png
Can anyone say why the symbol is like this -b+? For educational purposes only.
Link:
https://developer.android.com/training/basics/supporting-devices/languages.html#CreateDirs
source
share