Created
January 16, 2019 14:39
-
-
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…
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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