disable language splitting for app bundle builds (#1165)

This commit is contained in:
Konrad Pozniak 2019-03-29 19:56:53 +01:00 committed by GitHub
parent 3f13d8f38b
commit 7612b65bf7
1 changed files with 6 additions and 0 deletions

View File

@ -72,6 +72,12 @@ android {
exclude 'LICENSE_OFL'
exclude 'LICENSE_UNICODE'
}
bundle {
language {
// bundle all languages in every apk so the dynamic language switching works
enableSplit = false
}
}
}
ext.daggerVersion = '2.21'