I was able to solve my problem myself by analysing the dependency tree. in the
com.google.firebase:firebase-inappmessaging-display
the class io.grpc
was listed.
I have now removed io.grpc
.
implementation ("com.google.firebase:firebase-inappmessaging-display") {
exclude group: "io.grpc"
}
GGK