From 57cfba561d36f5119bee39bf875c652776746788 Mon Sep 17 00:00:00 2001 From: "hasinarak3@gmail.com" Date: Wed, 28 Jan 2026 16:08:50 +0300 Subject: [PATCH] Suppress warning (actual-expect) are in Beta. --- composeApp/build.gradle.kts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/composeApp/build.gradle.kts b/composeApp/build.gradle.kts index ed9d246..d6f8fcc 100644 --- a/composeApp/build.gradle.kts +++ b/composeApp/build.gradle.kts @@ -97,6 +97,15 @@ kotlin { implementation("com.google.zxing:javase:3.5.4") } } + targets.all { + compilations.all { + compileTaskProvider.configure { + compilerOptions { + freeCompilerArgs.add("-Xexpect-actual-classes") + } + } + } + } } android {