I am working on an application which is already uploaded on app store. When I download the apk from the app store, install and run it on my device, and open Android studio alongside (any random project), the Android monitor shows all the apis links and details from where I am fetching data.
For example,
if the user selects city = Lahore after login, it shows
"http://example.com/api/app_home?select_city=lahore&user_id=123....."
in the android monitor. Similarly for all other apis. You can even see the response which is returning after hitting a particular api.
How to avoid this? I guess this is not decompilation of apk. I am just running app on my device while connecting to Android studio and it is showing everything. Any help would be appreciated. I have already search for links but most of them showing how to avoid decompilation whereas I need to hide all these links and data at least.