Slackbot
11/04/2022, 9:02 PMVampire
11/04/2022, 9:11 PMStylianos Gakis
11/04/2022, 9:16 PMimplementation
API” 😅
But yeah this does not show up for me at all, I wonder which API is it that your IDE is finding?
For me none apply as seen in the attached image.
Since the fun implementation(dependencyNotation: String, configure: ExternalModuleDependency.() -> Unit): ExternalModuleDependency
one doesn’t work since libs… isn’t a string, and the fun <T : Dependency> implementation(dependency: T, configure: T.() -> Unit): T
doesn’t work either since libs… is not a Dependency
, but it returns a Provider<MinimalExternalModuleDependency>
, so none of the available functions match.Stylianos Gakis
11/04/2022, 9:17 PMlibs.kotlin.lib
returns a different type for you somehow?Vampire
11/04/2022, 9:18 PMStylianos Gakis
11/04/2022, 9:27 PM.gradle
directory, just does not resolve for this file.
Doesn’t seem to work to manually import it either hmm.
Not sure if it matters that for that build.gradle.kts file I am using kotlin("multiplatform")
instead of jvm and maybe it’s instead named something else there.Vampire
11/04/2022, 9:32 PMStylianos Gakis
11/04/2022, 9:33 PMVampire
11/04/2022, 9:40 PMdependencies
block that has nothing to do with the Gradle dependencies
block.
It is purley provided by the Kotlin Gradle plugin, so you need to complain to JetBrains.Stylianos Gakis
11/04/2022, 9:43 PMJavi
11/06/2022, 7:33 PM“implementation”(…) { }