If I am using this block for grpc wire implementat...
# android
s
If I am using this block for grpc wire implementation by square, only either server or client code is generated. How can I get both server & client code at once
Copy code
wire {
    sourcePath {
        srcDir("src/commonMain/proto")
    }

    kotlin {
        rpcRole = "client"
        sourcePath("src/commonMain/proto")
    }
    kotlin {
        rpcRole = "server"
        rpcCallStyle = "blocking"
        sourcePath("src/commonMain/proto")
    }
}
not kotlin but kotlin colored 1
c
Image from iOS.jpg
n
could you tell me your error