Reputation: 27
When i download 'app' from play store and try to see code in it, all I can see is null null null..... . If I have to achieve that kind of encryption how can I do that. From where should I start. What should I start searching in internet. I want to encrypt entire application.
Upvotes: 0
Views: 64
Reputation: 465
You need to obfuscate your code using Proguard. It not just obfuscates the code but also shrinks and optimizes it. You can read in detail about it at https://developer.android.com/studio/build/shrink-code#keep-code
Upvotes: 1