Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error building APK when minifyEnabled true

I need to enable proguard, so I set minifyEnabled to true. However, I then get the following error when trying to build a release APK:

Error:Execution failed for task ':app:packageRelease'. Unable to compute hash of .../app/build/intermediates/classes-proguard/release/classes.jar

Edit: Sounds like I need to update my proguard-rules according to the libraries I'm using. Here are my dependencies:

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.0'
    compile 'com.jakewharton:butterknife:7.0.1'
    compile 'com.parse.bolts:bolts-android:1.+'
    compile 'com.parse:parse-android:1.+'
    compile('com.crashlytics.sdk.android:crashlytics:2.5.2@aar') {
    transitive = true;
    }
    compile('com.mopub.sdk.android:mopub:4.0.0@aar') {
        transitive = true;
    }
}

What's the best way to find out what to put in proguard-rules for each of these? So far I've only found ButterKnife's

like image 388
vikzilla Avatar asked Nov 08 '15 00:11

vikzilla


People also ask

What is minifyEnabled in Android?

minifyEnabled true. // Enables resource shrinking, which is performed by the. // Android Gradle plugin. shrinkResources true. // Includes the default ProGuard rules files that are packaged with.

What is the use of minifyEnabled?

So minifyEnabled removes dead code but does not obfuscate or optimize.

What is ProGuard rule in Android?

ProGuard is a free Java app for Android that allows us to do the following: Reduce (minimize) the code: Unused code in the project should be removed. Code obfuscation: Rename the names of classes, fields, and so on. Improve the code: Inline the functions, for example.


1 Answers

-dontwarn on everything might cause another problem if required dependencies get stripped out without throwing an error.

Your best bet is to find the libraries that are preventing the build from occurring by checking your log output (or posting it here so someone can take a look) and then configuring them with -keep or -dontwarn as required, in the proguard-rules.pro file.

In most cases people have done this before for the same libraries that you're using, and you just need to find an example rules file and take a look at their config to learn how it's done, like this one for OkHttp, and teams often have this in the setup section of library projects on GitHub like this one for Retrofit.

like image 148
MattMatt Avatar answered Oct 03 '22 15:10

MattMatt