GradleKotlinConverter icon indicating copy to clipboard operation
GradleKotlinConverter copied to clipboard

Convert from Groovy to Kotlin DSL for Gradle, focused on Android.

Results 22 GradleKotlinConverter issues
Sort by recently updated
recently updated
newest added

When running the script, `id "idea"` gets converted to `id("ea")` in the plugin section. It looks like a regex is looking inside of quoted strings when it shouldn't be. Thanks...

Hi there, it seems all colons get converted to equals, not just parameter names? i.e. for [project](https://docs.gradle.org/current/dsl/org.gradle.api.artifacts.dsl.DependencyHandler.html#N173B5) dependency handlers `implementation project(path: ":customer-api:api")` becomes `implementation(project(path = " =customer-api =api"))` I tried...