After updating to Gradle version 3.0.0 and Android Studio 3.0 I'm receiving the following error:
Error:Execution failed for task ':app:appNameDebugBuild'.
Android dependency 'com.android.support:recyclerview-v7' has different version for the compile (24.0.0) and runtime (25.4.0) classpath. You should manually set the same version via DependencyResolution
I did search for anything with the version 24.0.0 in my project but didnt find anything. On gradle I define a variable with the version 25.4.0 and use it on compile/implementation dependencies.
How can I check which library or module is using the version 24.0.0? How can i work around this?