2017-07-19 58 views
0

我有一个exceptiuon我想在SDK水平23工作,所以我depedencies之一,我得到一个错误:程序兼容性-V7:23.1.0和mediarouter-V7:22.0.0

with: compile 'com.android.support:appcompat-v7:23.0.0' 
All com.android.support libraries must use the exact same version specification (mixing versions can lead to runtime crashes). Found versions 23.0.0, 22.0.0. Examples include com.android.support:appcompat-v7:23.0.0 and com.android.support:mediarouter-v7:22.0.0 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.) 

而且这在我拥有的馆藏上是正确的:mediarouter-v7:22.0.0

是否必须删除最后一个?

+0

将其更改为相同版本? –

+0

@MuratK。这是一个解决方案?如果我想使用SDK 23,我该怎么做 – Ben

回答

0

您必须使用相同的版本号。将您的mediarouter-v7:22.0.0更改为com.android.support:mediarouter-v7:23.0.0

有关支持包的概述,请参阅here

相关问题