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

change minifyenabled true enable proguard in build configuration.
Comments
Post a Comment