Mykhailo Dorokhin

Results 4 comments of Mykhailo Dorokhin

Indeed, I should've mentioned the usage of API 34. Nice to here that it's going to be supported in Cordova 13+. Thanks for the swift reply!

I just added an extra step to my CI/CD pipelines to replace `VERSION_1_8` with `VERSION_17` by running a bash script.

The first time Google released the intention to remove the `kotlin-android-extensions` was in 2020: https://android-developers.googleblog.com/2020/11/the-future-of-kotlin-android-extensions.html Starting from Kotlin 1.7 the build process was generating a warning that this plugin is...

@IgnatBeresnev Our project is also not open-source. I solved the issue by adding the explicit dependency in all `kapt` modules: ```kotlin afterEvaluate { tasks["dokkaHtml"].dependsOn(tasks.getByName("kaptReleaseKotlin"), tasks.getByName("kaptDebugKotlin")) } ```