I need to check my Android app's Internet consumption. In my app I have a numerous number of web service APIs being called.
I want to know how much my app consumes the Internet in kB/MB at a full go.
How can I check that? Is there any tool to check that?
For view purposes, you can check it in the monitor as mentioned by MD.
To store, you can do that programmatically
Android Studio 2.0 Introduce new
Network
section inAndroid Monitor
which can help you with your problem.There are three ways...
You can view in Device/Emulator. Go to Setting -> Data usage, and find your application in the list
In Eclipse, select DDMS (perspective) -> Select your package from Devices (left side) -> Click on Network Statistics tab -> Click Start
As already answered, in Android Studio, go to Android Monitor (bottom tab) -> Network (tab) -> look for Tx (Transmit Data) / Rx (Receive Data)
Have a look: Android Monitor.
In that there are many topics that you can monitor.
You will find Network Monitor.
Displaying a Running App in the Network Monitor:
Follow these steps:
Any network traffic begins to appear in the Network Monitor:
The Network Monitor adds up the amount of time it takes for the device to transmit and receive kilobytes of data. The y-axis is in kilobytes per second. The x-axis starts with seconds, and then minutes and seconds, and so on.
Reference: Android Monitor