Unresolved reference: pbandk
#250
Unanswered
e-hosseini
asked this question in
Q&A
Replies: 1 comment 1 reply
-
I think the problem is that you're putting the dependency in the wrong spot in your gradle file. I think instead of having a top-level kotlin {
...
sourceSets {
val commonMain by getting {
dependencies {
implementation("pro.streem.pbandk:pbandk-runtime:$pbandkVersion")
}
}
...
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I tried to use the generated code, but I have
Unresolved reference: pbandk
all the time. It seems I defined the dependencies fine, but some thing is wrong and I cannot fine it.The project is a KMM Library and this is the
build.gradle.kts
:I used this command to generate the code:
And this is the errors:
Beta Was this translation helpful? Give feedback.
All reactions