From 47b2056734e9ebfcf1efc4ce0af871d7768cc1fd Mon Sep 17 00:00:00 2001 From: Marius Butz Date: Sat, 9 May 2026 23:06:22 +0200 Subject: [PATCH] refactor: add abi splitting for android --- composeApp/build.gradle.kts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/composeApp/build.gradle.kts b/composeApp/build.gradle.kts index 71d3b924..91e9c5ca 100644 --- a/composeApp/build.gradle.kts +++ b/composeApp/build.gradle.kts @@ -364,6 +364,14 @@ android { } } } + splits { + abi { + isEnable = providers.gradleProperty("nuvio.splitAbi").orNull == "true" + reset() + include("arm64-v8a", "armeabi-v7a", "x86_64") + isUniversalApk = false + } + } compileOptions { isCoreLibraryDesugaringEnabled = true sourceCompatibility = JavaVersion.VERSION_11