Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No output of type SPLIT_LIST after update gradle to 3.0.0-alpha5

Tags:

gradle

After update gradle to 3.0.0-alpha5 my project can't sync gradle.

I received this message:

Gradle sync failed: No output of type: SPLIT_LIST

and in idea.log something about my release variant:

Variant 'release' has no output with type 'SPLIT_LIST'

buildTypes {
    release {
        minifyEnabled true
        shrinkResources true
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
like image 882
wrozwad Avatar asked Jul 04 '17 07:07

wrozwad


1 Answers

The problem is with shrinkResources config. Removing it is temporary solution for now. Unfortunately I didn't find any info about deprecation of that so I think it's a bug.

like image 158
wrozwad Avatar answered Oct 19 '22 08:10

wrozwad