Hi all. I created a library, and added Kafka-clien...
# gradle
r
Hi all. I created a library, and added Kafka-client as dependency. I'm now importing this library into my project, but i cannot use Kafka-client methods. How can i accesses kafka-client methods without import twice (in my library and now in my project)
c
Is it set up as Gradle subprojects within the same repo? Then try setting the dependency as
api("...")
instead of
implementation("...")
1
👍 1
r
Worked. thanks!