jQrgen
06/06/2024, 8:20 AMimplementation("org.nexa:libnexakotlin:0.0.1")
to implementation("org.nexa:libnexa-kotlin:0.0.1")
I’m afraid that I have to rename the gradle module of the library, which would cause a huge diff and a massive refactor and I want to avoid that
The library is complex and has several targets: mac, ios, jvm and android
The library is open source: https://gitlab.com/nexa/libnexakotlinephemient
06/06/2024, 9:01 AMsettings.gradle.kts
,
include(":libnexa-kotlin")
project(":libnexa-kotlin").projectDir = file("libnexakotlin")
will let you use the same directory with a different module nameephemient
06/06/2024, 9:02 AMAdam S
06/06/2024, 3:13 PMgit mv
the files then the Git diff will be minimal (IntelliJ renaming automatically uses git mv
under the hood)Adam S
06/06/2024, 3:14 PM