Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions opencloudApp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,24 @@ android {
resources.excludes.add("META-INF/*")
}

// Ship the App Bundle as a single self-contained APK instead of per-config splits.
// The app has no native libraries (0 ABI cost), uses vector drawables, and only a
// handful of small translated locales — measured overhead is ~0.5 MB (~4%). In return,
// Play and any mirror that re-hosts the Play artifact (Aurora, APKPure) deliver one
// complete APK, so sideloads can't crash with "missing splits / Google Play required"
// (see issue #208). Does not affect assembleRelease or the F-Droid build (already universal).
bundle {
language {
enableSplit = false
}
density {
enableSplit = false
}
abi {
enableSplit = false
}
}

namespace "eu.opencloud.android"
testNamespace "eu.opencloud.android.test"
}
Expand Down
Loading