Reputation: 1787
recently some one told me that he retrieves all the url requests from my android application and he sent them to me . I'm using proguard in my application but he told me there are some ways that he can monitor the url requests .
I'm using URLConnection in my application .
how can I hide the url requests and somehow encrypt the urls so no one can read and access my url requestes ?
Upvotes: 1
Views: 1775
Reputation: 22183
You can't. It's quite easy to use a proxy to catch all network traffic and check what you are using. If the problem is related with the content, then you can switch from http to https, but the host will be always visible. Actually as user I would be really scared about an app that want to hide such information however.
Upvotes: 2