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 f9350462d1
commit 26bea54230
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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'