I am not too sure about how secure a apk file is and therefore this question.
We have a application which gets the result from a publicly exposed webservice. However, when we tried to open the classes.dex file (opening .apk with winrar), the webservice name and the soap action were visible in it. This can be a potential issue if someone can get a hold of the apk file and could easily access the exposed webservice url.
It looks like:
handleMessage handler hasError hello ht _http:MY WEBSERIVCE NAME
uhttp:MY SOAP Action Name
What would be correct approach to get details from a publicly exposed URL? If we write a wrapper around the web service to get the only specific details we want than also this would be visible in classes.dex.
Is there a way to protect the .apk file from opening from a computer or PC.
Or is there a way to encrypt the webservice name in the program.
Thanks.