Skip to content

Instantly share code, notes, and snippets.

@gunhansancar
Created January 16, 2019 14:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gunhansancar/bd77725221108458a5bcb481f53a7a70 to your computer and use it in GitHub Desktop.
Save gunhansancar/bd77725221108458a5bcb481f53a7a70 to your computer and use it in GitHub Desktop.
Google introduced a new App Bundle format to split apk files in smaller sizes when they're being installed on the client devices. However, this means that we cannot have dynamic language changes in our applications. To prevent that split we need to add extra lines in our build.gradle file inside the app folder. For more details: https://gunhansa…
android {
//...
//... removed for brevity
bundle {
language {
enableSplit = false
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment