I am using ```implementation("dev.cerbos:cerbos-sd...
# help
c
I am using
Copy code
implementation("dev.cerbos:cerbos-sdk-java:0.7.0")
	implementation("io.grpc:grpc-core:1.59.0")
c
You probably have another dependency that's pulling in a different version of grpc. Look at the output of
./gradlew dependencies
and add an exclude directive to that one. Here's a similar issue from some time ago: https://github.com/cerbos/cerbos/discussions/1687
c
Thanks. I found conflict google.guava but utilmately commenting this out solved suppressed the error
implementation("io.grpc:grpc-core:1.59.0")
👍 1