From eeb2b1fa007b7aff22b4e62881f8e768e8998617 Mon Sep 17 00:00:00 2001 From: Florent CHAMPIGNY Date: Wed, 30 Jul 2025 08:28:02 +0200 Subject: [PATCH] Update README.md --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) 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