本文介绍了清单合并失败:用途-SDK:的minSdkVersion 14的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
由于下载最新的SDK和安装Android的工作室,我的项目未能建立。我得到以下信息:
错误:摇篮:执行失败的任务:SampleProject:processProdDebugManifest。
>清单合并失败:使用-SDK:的minSdkVersion 14不能比L型小图书馆com.android.support:support-v4:21.0.0-rc1声明
解决方案
最新大号释放这明显要求第l SDK。
latest L release which obviously requires the L SDK.
Edit:
If you need to use the new views (CardView, RecyclerView, and Palette), the following should work:
compile "com.android.support:cardview-v7:21.0.0"
compile "com.android.support:recyclerview-v7:21.0.0"
compile "com.android.support:palette-v7:21.0.0"
(Credit to EddieRingle on /androiddev - http://www.reddit.com/r/androiddev/comments/297xli/howto_use_the_v21_support_libs_on_older_versions/)
Another Edit
Be sure to see @murtuza's answer below regarding appcompat-v7 and upvote if it helps!
这篇关于清单合并失败:用途-SDK:的minSdkVersion 14的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!