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
3
Answers
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
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.
From Android studio Electric Eel version,
follow the below steps in the AS navigation bar:
1). Select View > Tool Windows > App Inspection
2). Select a process, and you might see two tabs here: Database inspector & Network inspector.
3). Navigate to "Network inspector" tab
For more details: https://developer.android.com/studio/debug/network-profiler#:~:text=To%20open%20the%20Network%20Inspector,Network%20Inspector%20from%20the%20tabs.