Trying out the `com.android.kotlin.multiplatform.l...
# multiplatform
r
Trying out the
com.android.kotlin.multiplatform.library
gradle plugin and the modules it produces don't seem to produce API dumps with
binary-compatibility-validator
. Not sure if the issue is on the Android Gradle Plugin side or the BCV side, which is made more complicated by the fact that BCV development is frozen while it migrates into the Kotlin Gradle Plugin. Has anyone else run into this or have any insight?
t
Could you try with built-in BCV in Kotlin 2.2.0-RC2?
1
if it is still not working - please report a new Kotlin issue
r
How do I use the built-in BCV? I wasn't able to find any documentation on it and was unclear whether it had been released or not.
t
Copy code
kotlin {
    @OptIn(org.jetbrains.kotlin.gradle.dsl.abi.ExperimentalAbiValidation::class)
    abiValidation {
        enabled.set(true)
    }
}
r
Thanks. I was confused because I expected it to still be in a separate plugin. Looks like everything is working fine with the built-in BCV.
👍 1