I\'d like to know what to name my folder for different languages. Where can I find the supported list of languages on Android?
Just FYI, if you are unable to set any locale, the problem might be below attribute in your app level gradle file:
resConfigs "en", "hi" //to specify allowed locales for your app
So, if you want to support any locale other than English and Hindi, specify your locale here or just remove above line. By default your app will support all the locales.
Thanks :)