【完美解决系列】This support library should not use a different version

在导入compile ‘com.android.support:recyclerview-v7:24.2.0’时,提示了以下的错误。

This support library should not use a different version (24) than the compileSdkVersion (23) 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.)

出现此问题的原因是,我的targetSdkVersion是23的,所以引用上边的recyclerview时会报错误。

解决方法:
compile ‘com.android.support:recyclerview-v7:23.2.0’ 将24改为23即可。
这个版本需要对应你是targetSdkVersion版本就可以解决此问题了。

猜你喜欢

转载自blog.csdn.net/mvpstevenlin/article/details/55209966