Suresh A
Suresh A

Reputation: 1188

How to prevent extraction of android apk source code from attackers?

I have an existing released Android app in google play. But some hacker extract source code from apk and use our services.I have already implement proguard + Base64 but even through hacker extract source code from apk. How can i prevent my apk from extraction?

Upvotes: 0

Views: 953

Answers (1)

EE66
EE66

Reputation: 4651

  • Cant prevent extraction.
  • Can do proguard but a good attacker it wont stop, because he can decompile your and reverse engineer it. Then he can listen to your LogCat, Binder, sniff communication...
  • On the other hand u can do a lot of stuff to make your code better. Use SSL learn how to use proguard better so it ill be harder for them, dont write anything to log, encrypt data.

Upvotes: 1

Related Questions