diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 332e5dde..7c5cc51b 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -1,3 +1,5 @@ +import com.android.build.api.dsl.ApplicationExtension + plugins { alias(libs.plugins.compose.compiler) alias(libs.plugins.kotlin.serialization) @@ -5,7 +7,7 @@ plugins { id("org.jetbrains.kotlin.android") } -android { +configure { compileSdk = 36 ndkVersion = "29.0.14206865" defaultConfig { @@ -31,11 +33,6 @@ android { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } - splits { - abi { - reset() - } - } buildTypes { debug { ndk { @@ -56,9 +53,6 @@ android { buildConfig = true compose = true } - sourceSets { - getByName("main").java.srcDirs("src/main/kotlin") - } externalNativeBuild { cmake { path = file("src/main/cpp/CMakeLists.txt")