skip to Main Content

I saw this documentation https://developer.android.com/studio/debug/network-profiler

which says we can inspect networks requests and responses via network inspector. But, my android studio not showing this tab. ( I tried invalidate caches/restart, but didn’t work out)

current android studio version is: Arctic Fox, 2020.3.1 patch 4

enter image description here

3

Answers


  1. follow this :
    go to profiler at the bottom -> starting a new profiling session(make sure your app is running while doing this) -> you will get to see it says Network Profiler has moved-> click network inspector
    image

    Login or Signup to reply.
  2. I got same problem and fixed it.

    AndroidManifest.xml

    remove android:sharedUserId attribute from <manifest> element.

    I added android:sharedUserId for shot plugin to save screenshots.
    shot works only with androidTest/AndroidManifest.xml.
    No need to add to global AndroidManifest.xml.

    Login or Signup to reply.
  3. From Android studio Electric Eel version,
    follow the below steps in the AS navigation bar:

    1). Select View > Tool Windows > App Inspection

    enter image description here

    2). Select a process, and you might see two tabs here: Database inspector & Network inspector.

    3). Navigate to "Network inspector" tab
    enter image description here

    For more details: https://developer.android.com/studio/debug/network-profiler#:~:text=To%20open%20the%20Network%20Inspector,Network%20Inspector%20from%20the%20tabs.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search