Background
The following error occurs when communicating with grpc by applying our current version in M1.
Failed to instantiate [org.medibloc.panacea.Wallet]: Factory method 'mediblocWallet' threw exception; nested exception is io.grpc.StatusRuntimeException: UNKNOWN
The cause is that the current version of grpc does not support M1.
Implement
The client should use it in build.gradle like this:
protoc {
artifact = "com.google.protobuf:protoc:3.14.0:osx-x86_64"
}
plugins {
grpc {
artifact = "io.grpc:protoc-gen-grpc-java:1.50.1:osx-x86_64"
}
}
We add this to our guide.
Background
The following error occurs when communicating with grpc by applying our current version in M1.
The cause is that the current version of grpc does not support M1.
Implement
The client should use it in
build.gradlelike this:We add this to our guide.