After updating to android studio 2.3 I got this error message. I know it\'s just a hint as the app run normally but it\'s really strange.
All com.andr
Pay attention to the little information window that say something about the error, it says the examples that you have to change and add.
In this case:
Found versions 25.1.1, 24.0.0. Examples include com.android.support:animated-vector-drawable:25.1.1 and com.android.support:mediarouter-v7:24.0.0
Your
com.android.support:animated-vector-drawable:25.1.1
is version 25.1.1, and your
com.android.support:mediarouter-v7:24.0.0
is version 24.0.0, so you have to add the mediarouter with the same version:
com.android.support:mediarouter-v7:25.1.1
And do that for every example that the little information window says, in this case all the libraries that doesn't have the version 25.1.1.
You have to sync the gradle after you fix the indicated library to see the next library and package that you have to change.
IMPORTANT:
You also can use another method to see the difference of the versions of all the libraries that you are actually compiling (like run a gradle dependency report or go to your libraries files), the real objetive is compile all the libraries that you are using with the same version.