sqrt1764
sqrt1764
Greetings I encountered the same issue as puryagh & solved it. It has nothing to do with protobuf. His code was failing because he is missing dependencies. The solution is...
> i trace library code > > in Client.java at line 617 progress of code stoped and next block not run > > ` Protocol.ConnectRequest req = Protocol.ConnectRequest.newBuilder() .setToken(this.token) .build();`...
This is what your project's module's dependencies should look like when using this library. ``` implementation "io.github.centrifugal:centrifuge-java:0.0.5" // `centrifuge-java` dependency is silently crashing when the following is missing implementation "net.sourceforge.streamsupport:streamsupport-cfuture:1.7.1"...