Код: Выделить всё
Could not resolve de.demo.project.
Required by:
project :
Possible solution:
- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
< /code>
settings.gradle.kts:
rootProject.name = "demoname"
includeBuild("../other-demo-project")
< /code>
Файл Gradle: < /p>
....
dependencies {
implementation(group = "de.demo", name = "other-demo-project")
}
....
Подробнее здесь: https://stackoverflow.com/questions/614 ... rect-paths