I\'m developing an Android app that utilizes a third-party jar. I want to monitor and possibly modify the HTTP requests issued by that library. Under iOS, I can do that by r
You are unfortunately out of luck: there is no app-wide interception framework of that sort available to Android apps.
My suggestion would be to setup a proxy that intercepts the requests and supplies your mock response.