phil-t
06/16/2022, 1:12 PMmy-project
has a dependency on my-library
which is set up in the build.gradle.kts of my-project
like this:
dependencies {
implementation("com.example:my-library:1.16")
}
I don’t want to have to build/deploy my-library
every time I change something, so is there a way to point the Gradle dependency to the local copy of my-library
during development to make this easier?
These projects are both under the same folder so I tried implementation("../my-library")
but that didn’t work. I’m on a Mac using IntelliJ, not sure if that matters.Rob Elliot
06/16/2022, 1:15 PMSam
06/16/2022, 1:15 PMSam
06/16/2022, 1:16 PMphil-t
06/16/2022, 1:37 PMephemient
06/16/2022, 3:02 PMLuc Girardin
06/17/2022, 10:24 AM