Home > database >  Weird response printed by Network Inspector of Bumble Bee Android Studio
Weird response printed by Network Inspector of Bumble Bee Android Studio

Time:02-10

Updated Android Studio to Bumble Bee and wanted to use Network Inspector. Response is no longer plain text. It works well on Network Profiler of Arctic Fox (previous version of Android Studio). I tried to look at update docs but could not find anything in this direction. Is there some setting that needs to be changed?

Android Studio Bumblebee | 2021.1.1 Patch 1

enter image description here

CodePudding user response:

I had the same problem after updating Android Studio to Bumble Bee. Please set acceptable encodings in the request header. ("Accept-Encoding", "identity") It works for me.

CodePudding user response:

it is showing because of gzip compression
have you try this:
"Content-Type: application/json;charset=utf-8", "Accept: application/json"
as @Header in your response call
you can also follow this link:


Retrofit and OkHttp gzip decode

  • Related