博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
‘This support library should not use a different version’解决方案
阅读量:6170 次
发布时间:2019-06-21

本文共 746 字,大约阅读时间需要 2 分钟。

在导入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版本就可以解决此问题了

转载:http://blog.csdn.net/mvpstevenlin/article/details/55209966

转载于:https://www.cnblogs.com/zly1022/p/7518986.html

你可能感兴趣的文章
《OpenACC并行编程实战》—— 第1章 并行编程概览 1.1 加速器产品
查看>>
C语言OJ项目参考(2417) 字符串长度
查看>>
ajax的手写、封装和自定义设置
查看>>
class path resource [META-INF/xfire/services.xml] cannot be opened because it does not exist
查看>>
android自定义属性
查看>>
ERROR 1114 (HY000): The table 'table1' is full
查看>>
知乎网友神回复:哪怕是平时聊天吹牛的也没见程序员晒,这是为什么呢?
查看>>
Android实训案例(三)——实现时间轴效果的ListView,加入本地存储,实现恋爱日记的效果!...
查看>>
phalapi-进阶篇2(DI依赖注入和单例模式)
查看>>
MySQL 5.7.5 : GTID_EXECUTED系统表
查看>>
Hybrid框架UI重构之路:四、分而治之
查看>>
【原创】Valgrind 基础
查看>>
Es6系列之destructuring assignments
查看>>
CSS ID选择器与CLASS选择器
查看>>
mysql 索引B-Tree类型对索引使用的生效和失效情况详解
查看>>
指针的看法
查看>>
Cocos-2d 坐标系及其坐标转换
查看>>
LAMP网站的CACHE机制概要
查看>>
[MySQL 5.6] 5.6新参数slave_rows_search_algorithms
查看>>
ESXi5.1嵌套KVM虚拟化环境支持配置
查看>>