refactor: add abi splitting for android

This commit is contained in:
Marius Butz 2026-05-09 23:06:22 +02:00
parent 96d0b0703e
commit 47b2056734

View file

@ -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