New languages screen (#595)
* added a dictionary size property * new language selection screen * added a language search field * SettingsStore now return a copy of the enabled languages to prevent accidental overwriting of the original settings object
This commit is contained in:
parent
76099862e5
commit
2eea62b26f
34 changed files with 540 additions and 160 deletions
|
|
@ -103,8 +103,14 @@ android {
|
|||
|
||||
flavorDimensions = ['app']
|
||||
productFlavors {
|
||||
full { dimension 'app' }
|
||||
lite { dimension 'app' }
|
||||
full {
|
||||
dimension 'app'
|
||||
buildConfigField 'Boolean', 'LITE', 'false'
|
||||
}
|
||||
lite {
|
||||
dimension 'app'
|
||||
buildConfigField 'Boolean', 'LITE', 'true'
|
||||
}
|
||||
}
|
||||
|
||||
applicationVariants.configureEach { variant ->
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue