Closed mateusgrb closed 7 years ago
rxbinding-appcompat-v7 is pulling in a newer version of AppCompat which is what is causing this problem. You can use a Gradle ResolutionStrategy
to force the support library versions you are pulling in to an older version (like this).
The project I'm working on is stuck on
compileSdkVersion 23
for dependency reasons. MybuildToolsVersion
is set to25.0.2
. Under my dependencies I havecompile 'com.android.support:support-v4:23.4.0'
.With only
compile 'com.jakewharton.rxbinding2:rxbinding-support-v4:2.0.0'
, everything works good.Now I want to use
RxSearchView
from appcompat-v7. When I addcompile 'com.jakewharton.rxbinding2:rxbinding-appcompat-v7:2.0.0'
, I get these errors:It seems like the latest version requires compileSdkVersion higher than 23. Is there anyway to workaround that?