diff --git a/README.md b/README.md index 9176cf5c..7b908f18 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,10 @@ For each request, you can inspect: This feature is invaluable for diagnosing backend issues, debugging unexpected API failures, and verifying request payloads and authentication headers. +``` +implementation("io.github.openflocon:flocon-okhttp-interceptor:$LAST_VERSION") +``` + ``` val okHttpClient = OkHttpClient() .newBuilder() @@ -251,6 +255,25 @@ Flocon.deeplinks( --- +# Grpc + +GRPC + +Similar to network inteceptions, Flocon works with grpc + +``` +implementation("io.github.openflocon:flocon-grpc-interceptor:$LAST_VERSION") +``` + +``` +ManagedChannelBuilder + ... + .intercept( + FloconGrpcInterceptor() + ) + .build() +``` + ## 🧰 Requirements - An Android device with USB debugging enabled