Reputation: 69
I have an Android project, and I want to protect the APK file because I found it very easy to decompile. With a little research, I found ProGuard, but I don't know how to use it to protect my app.
Upvotes: 0
Views: 4959
Reputation: 3258
Technically you don't protect the file against decompilation but you simply make it harder to understand your decompiled code/logic
Upvotes: 0
Reputation: 11
Upvotes: 1
Reputation: 2542
how about trying ProGuard yourself? a really good explanation could be found over here: http://proguard.sourceforge.net/index.html#manual/index.html
Upvotes: 3