Reputation: 138
I have many domain addresses in my application and if I follow my application by using WireShark or NetGuard programs, my app's domain addresses are shown.
Appeared domain addresses from NetGuard:
e.crashlytics.com/443
myapp.com/443
myapp2.com/443
How can I hide these addresses programmatically?
Upvotes: 1
Views: 286
Reputation: 2371
AFAIK, there is no way you can hide these addresses if you are sending a request to them from your application. What you can however do is use a proxy domain, and send requests to that domain from your application, and internally pipe data from the source domain through the proxy. The call flow would be:
application -> proxy.com -> (e.crashlytics.com / myapp.com / myapp2.com, based on either a request header, or path)
Upvotes: 1