Exception:All com.android.support libraries must use the exact same version specification

Ecception:All com.android.support libraries must use the exact same version specification


All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 25.3.0, 23.4.0. Examples includecom.android.support:animated-vector-drawable:25.3.0 and com.android.support:design:23.4.0more...(Ctrl+F1)


原因:依赖的版本不一致。

解决:将版本结合编译版本保持一致。

处理:加入相同版本的依赖,重新编译

[html]  view plain  copy
  1. compile 'com.android.support:support-v4:25.3.0'  
  2. compile 'com.android.support:design:25.3.0'  
  3. compile 'com.android.support:appcompat-v7:25.3.0'  

你可能感兴趣的:(BUG及其他问题)