What is the list of supported languages/locales on Android?

前端 未结 14 1383
我在风中等你
我在风中等你 2020-11-22 02:06

I\'d like to know what to name my folder for different languages. Where can I find the supported list of languages on Android?

14条回答
  •  离开以前
    2020-11-22 02:52

    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 :)

提交回复
热议问题