GradleKotlinConverter icon indicating copy to clipboard operation
GradleKotlinConverter copied to clipboard

Conversion of assignment with String and Variable

Open NiklasLehnfeld opened this issue 4 years ago • 0 comments

Input:

archivesBaseName = "random-app-$versionName"

Actual Output:

archivesBaseName = "random-app-$versionName" = versionName"

Expected Output:

archivesBaseName = "random-app-$versionName"

NiklasLehnfeld avatar May 14 '20 12:05 NiklasLehnfeld