0

All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 25.3.0, 25.1.1, 23.4.0. Examples include com.android.support:animated-vector-drawable:25.3.0 and com.android.support:cardview-v7:25.1.1 less... (Ctrl+F1) There are some combinations of libraries, or tools and libraries, that are incompatible, or can lead to bugs. One such incompatibility is compiling with a version of the Android support libraries that is not the latest version (or in particular, a version lower than your targetSdkVersion.)

enter image description here

Renats Stozkovs
  • 2,549
  • 10
  • 22
  • 26
  • 3
    `All com.android.support libraries must use the exact same version` is your answer. – Pushpendra Apr 14 '17 at 07:19
  • Possible duplicate of [All com.android.support libraries must use the exact same version specification](http://stackoverflow.com/questions/42374151/all-com-android-support-libraries-must-use-the-exact-same-version-specification) – Jemshit Apr 14 '17 at 08:07
  • Adding images correctly – Renats Stozkovs Apr 16 '17 at 20:32

1 Answers1

-1

Go to all the gradle files and make version identical. It should be having same version across all modules as tagetVersionSDK. Hopefully This should solve your problem.

zakaiter
  • 439
  • 3
  • 11