K-dub
04/27/2024, 2:41 AMunresolved reference: src_shared
from this line:
dependencies {
implementation(projects.src_shared)
src_shared is a directory with its own gradle file, is included in the top level settings.gradle.kts like include(":src_shared")
- and in fact it was working fine until I tried renaming it from its old name to the new src_shared. The files do exist and all references to the old name have been updated
How can I go about debugging this? I dont understand how gradle is trying and failing to resolve this referenceephemient
04/27/2024, 2:44 AMA project name with kebab case () or snake case (some-lib
) will be converted to camel case in accessors:some_lib
.projects.someLib
K-dub
04/27/2024, 2:44 AMK-dub
04/27/2024, 2:45 AMephemient
04/27/2024, 2:45 AMK-dub
04/27/2024, 2:46 AM