diff options
author | cyBerta <cyberta@riseup.net> | 2021-12-01 12:42:49 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2021-12-01 12:42:49 +0100 |
commit | 303fa52e5cd670d4d0d718afee43470ef81a758b (patch) | |
tree | d65fb9287c1784de17a92b121ec00425af3f68e5 /app | |
parent | 3d65584ab46b3caa406284a8755b01ce7e191d0b (diff) |
attempt to fix aab builds from google play
Diffstat (limited to 'app')
-rw-r--r-- | app/build.gradle | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/build.gradle b/app/build.gradle index 904d9506..f7483675 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -61,6 +61,22 @@ android { jumboMode true multiDexEnabled true } + + ndk { + abiFilters 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a' + } + + bundle { + language { + enableSplit = true + } + density { + enableSplit = true + } + abi { + enableSplit = true + } + } } flavorDimensions "branding", "implementation", "abi" |