I\'m trying to do a \'release\' build on an Android app and I keep on getting this error of:
Unable to compute hash of /../AndroidStudioProjects/../cl
Disabling the minifyEnabled option from my gradle file corrected the error in my build.
build.gradle
buildTypes { release { // DISABLE OPTION //minifyEnabled true proguardFiles 'proguard.cfg' } }