An open API service indexing awesome lists of open source software.

https://github.com/prongbang/android-grpc

Android + gRPC
https://github.com/prongbang/android-grpc

android-grpc grpc grpc-server

Last synced: 7 months ago
JSON representation

Android + gRPC

Awesome Lists containing this project

README

          

# Android + gRPC

### Blog

[https://prongbang.github.io/android/grpc/2018/12/28/android-grpc.html](https://prongbang.github.io/android/grpc/2018/12/28/android-grpc.html)

### Change IP server in `Injector.kt`

```kotlin
object Injector {

// Provide GrpcService
fun provideGrpcService() = GrpcService(
"IP SERVER",
50051
)
}
```

### gRPC server

[gRPC server](https://github.com/prongbang/android-grpc/tree/master/grpcserver)

- Run

```
cd grpcserver
go run main.go
```