Is there a way to prevent the reverse engineering of an ionic mobile app? As mentioned in the Android forum, I activated proguard and built the application in eclipse. A file called proguard was created in my bin folder. It contained something like this
view AndroidManifest.xml #generated:6 -keep class com.fg.lolc.CordovaApp { <init>(...); }
But I could still reverse engineer the application, and I was able to get the code from my APK. Is there a way to prevent this and improve the security of the ionic application? Thanks.
source share