For me, the reason was the new lib data binding
com.android.databinding:dataBinder:1.0-rc2
it somehow used a contradictory version of lib annotations that I couldn't get with
configurations.all { resolutionStrategy { force group: 'com.android.support', name: 'support-v4', version: '23.1.0' force group: 'com.android.support', name: 'appcompat-v7', version: '23.1.0' force group: 'com.android.support', name: 'support-annotations', version: '23.1.0' } }
but the new rc3 and rc4 seem to have fixed it, so just use these versions
for3st Nov 02 '15 at 20:23 2015-11-02 20:23
source share