0

We have a challenge that reverse engineer modding our App and change some behavior of it and repack it.

We added a App signature checking to code but the reverse engineer can found that part and disabled it.

the another challenge is the third-party API we use must done on client and we can't perform it on server. Anyone have idea to increase security of App ?

Sadegh Ghanbari
  • 1,271
  • 15
  • 29

1 Answers1

1

I have 3 things in mind for security.

  1. use proguard for code deobfuscation
  2. write native code for your secured part. It can't be reverse engineered
  3. or process your secured part in server side & use the result.
Sayem
  • 4,891
  • 3
  • 28
  • 43