kotlin dsl: Why does package rename clear the Project id?
After export to kotlin I have a lot of package names that capitalized
package Ops
object Project : Project ({
id("Ops")
name = "ops"
...
After doing a rename refactor on the package from "Ops" to "ops" the id() in the project is changed to
object Project : Project ({
id("")
Why is that?
Please sign in to leave a comment.