环境建好后运行就出现错误
Description Resource Path Location Type
The container 'Android Dependencies' references non existing library 'F:\workspace\appcompat_v7\bin\appcompat_v7.jar' Demo Build path Build Path Problem
这是什么意思呀,我用的是本站下的集成的安装包,配置应该没什么问题呀
Description Resource Path Location Type
The container 'Android Dependencies' references non existing library 'F:\workspace\appcompat_v7\bin\appcompat_v7.jar' Demo Build path Build Path Problem
这是什么意思呀,我用的是本站下的集成的安装包,配置应该没什么问题呀
2015-02-01
appcompat_v7可使app向后兼容
解决办法有两个:
一:创建项目时,将最低支持API设为14,就不会产生appcompat_v7.
二:(推荐)
1.首先在Android SDK Manager中安装Android 5.0.1 (API 21)
2.appcompat_v7 -> Properties -> Android, 在 Project Build Target中选择Android 5.0.1
3.appcompat_v7 -> Java Build Path -> Order and Export, 选择Android 5.0.1
4.将2,3步骤在你创建的安卓项目上操作一遍。
举报