diff options
Diffstat (limited to 'android/app')
| -rw-r--r-- | android/app/build.gradle.kts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 3e99a3c7ab..359a4259cc 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -13,6 +13,7 @@ plugins { id(Dependencies.Plugin.kotlinParcelizeId) id(Dependencies.Plugin.ksp) version Versions.Plugin.ksp id(Dependencies.Plugin.junit5) version Versions.Plugin.junit5 + id(Dependencies.Plugin.composeCompiler) version Versions.kotlin } val repoRootPath = rootProject.projectDir.absoluteFile.parentFile.absolutePath @@ -127,8 +128,6 @@ android { buildConfig = true } - composeOptions { kotlinCompilerExtensionVersion = Versions.kotlinCompilerExtensionVersion } - compileOptions { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 @@ -244,6 +243,8 @@ android { project.tasks.assemble.dependsOn("ensureValidVersionCode") } +composeCompiler { enableStrongSkippingMode = true } + androidComponents { beforeVariants { variantBuilder -> variantBuilder.enable = |
