configuration - Proguard not obfuscating in Android Studio -


i trying export signed apk, obfuscated proguard. after process, can see code , class names in decompiler tool. spent 1 day , can't understand missed.

in gradle file specified :

    buildtypes {         release {             apply plugin: 'maven'             minifyenabled false             proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro'         }     } 

proguard-rules.pro empty. should specify else enable proguarding ? after decompilation

enter image description here

change minifyenabled true enable proguard in build configuration.


Comments

Popular posts from this blog

java - Unable to make sub reports with Jasper -

scala - play framework: Modules were resolved with conflicting cross-version suffixes -

Passing Variables from AngelScript to C++ -