kiruto / debug-bottle

🍼Debug Bottle is an Android runtime debug / develop tools written using kotlin language.
http://exyui.com/article/3/Android-Debug-Bottle-v11
Apache License 2.0
854 stars 90 forks source link

Debug Bottle 这个里面的语言是根据什么来控制的呢? #7

Open Liloupar opened 7 years ago

Liloupar commented 7 years ago

为什么我运行demo 的话 是中文的,但是我自己集成的是英文的呢? 同一个设备。。

kiruto commented 7 years ago

Android has great i18n support.

ghost commented 7 years ago

我也遇到这个问题了是因为在build.gradle中设置了如下配置

android{
    ...
    defaultConfig{
        ...
        resConfigs "zh","en"
    }
}

加上zh-rCN就可以了 resConfigs "zh","en","zh-rCN"