Reputation: 73
I know about the TrafficStats Class which can tell about the Network uses by an application in Android. Now I want to know which application sends which file on server from the device. Is there any way to find this. Is there any Android API which can do this task or can help to do this task.
Upvotes: 1
Views: 268
Reputation: 4266
You can make sniffing with a man in the middle / fiddler to know what is reached (see traffic), and you can uncompile apk builds of android applications so it means that you can see what the application do, but I didn't see how can you know directly from wich application it comes.
More info for fiddle: http://www.cantoni.org/2013/11/06/capture-android-web-traffic-fiddler
Upvotes: 1