After upgrading gradle to 3.0.0-alpha5, my project cannot sync gradle.
I received this message:
Gradle sync failed: No output of type: SPLIT_LIST
and in idea.logsomething about my version release:
Variant 'release' has no output with type 'SPLIT_LIST'
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
source
share