i created backend module in KMM project and to reu...
# gradle
h
i created backend module in KMM project and to reuse model classes in commonMain source set (shared module), so i just add to ‘backend’ module :
Copy code
dependencies {
    implementation(project(":shared"))
    ...
}
and i got this error message:
Copy code
Failed to resolve: project::shared
Affected Modules: KMMM.backend
sorry my english is bad my Repository https://github.com/haitrvnvn/KMMM
t
in
:shared
module you also need to add
jvm()
target
1
h
Yeah! it work! thank you so much :D