11

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

HBB20
  • 2,743
  • 1
  • 24
  • 35

1 Answers1

13

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.

Yulia
  • 146
  • 1
  • 3
  • Thanks. https://developer.android.com/studio/debug/network-profiler talks about why... But it only mentions about not showing header without it so I did not consider before. – HBB20 Feb 09 '22 at 17:47
  • 1
    Thanks, I'm doing this now as well. but only for debug builds (BuildConfig.DEBUG == true). So production builds can still benefit from gzip but during development I can see the responses. – Ridcully Feb 22 '22 at 12:43