I recently upgraded to the new gradle 3.0.0-alpha5 after which some libraries are not resolved at compile time. However, all works fine at runtime, but when I try to include the missing libraries, I get runtime error.
this works at runtime but libraries are not resolved at compile time:
compile('jp.wasabeef:picasso-transformations:2.1.2') {
exclude group: 'com.squareup.picasso'
}
this resolves the libraries but fails at runtime:
compile 'jp.wasabeef:picasso-transformations:2.1.2'