I have to protect my app by enabling Proguard obfuscation in Android Studio. I have searched for the process of how to apply it but i did not get any clear solution. When i try it, i always get an error. So can anyone tell me the clear steps to apply it in my app?
I am doing this by the following steps:
- In Android Studio, open up an Android project. 
- Change to Project View. 
- Change the following line: - minifyEnable falseto- minifyEnable true
- Set ProGuard Rules(optional) - 4.1 In Project View, select the proguard-rules.pro file. - 4.2 Add in the following lines to tell ProGuard not to obfuscate certain classes. - -keepclassmembers class com.dom925.xxxx { public * }
Error that I am getting by following the steps are 
Error:Execution failed for task ':app:packageRelease'. Unable to compute hash of D:\Android\Pojectname\app\build\intermediates\classes-proguard\release\classes.jar
 
     
     
     
     
     
    