1
RhymeZx
5y

What additional security should be added to an android native app??
I need experienced answers please

Comments
  • 4
    Just don't add the holes
  • 1
  • 2
    What exactly are you trying to secure? API keys? You can't, do OAuth. Source? Can always be reversed to a certain degree. Otherwise your usual measures to store data etc apply
  • 1
    XML? Avoid common XXE vulnerabilities.
  • 2
    Update your depencies;
    if you have only one certificate/CA for api stuff: pin it;
    Only use https.
Add Comment