Jakub Ledwon
02/01/2024, 2:24 PM2024.01.00
bom (1.6.0). I run into NoClassDefFoundError during lint issue. As a workaround I switched to beta lint version android.experimental.lint.version=8.3.0-beta02
. NoClassDefFoundError
is now gone, and lint works fine, but it started reporting UnsafeOptInUsageError
for ExperimentalMaterial3APiUsage
which I think are false positives, since I have "-opt-in=androidx.compose.material3.ExperimentalMaterial3Api"
passed as freeCompilerArgs
. It only started reporting it after the bump. Switching to @OptIn
instead of free compiler arg doesn’t solve the issue either. Have any of you run into similar problem and maybe know the solution?Stefan Wärting
02/09/2024, 7:39 AM