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")
}
}
...
}
} |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I tried to use the generated code, but I have
Unresolved reference: pbandkall 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:

All reactions