Eclipse error:can't find api database,api check not performed

最近用eclipse开发android项目时候,经常遇到这个错误提示,然后只能通过clean project消除错误,在网上查了下,说是项目里面配置的版本在本地sdk中不存在,然我我把我项目中的最低minSdkVersion版本和targetSdkVersion版本与本地的sdk版本做了匹配,但是还是不行,最后在stackoverflow上面找到了一个很好的解决方法:

1.确认AndroidManifest文件中的minSdkVersiontargetSdkVersion存在本地sdk列表中

2.右键点击错误(Window-->Show View-->General--) Problems中的带有红X的item选项,我的由于已经修复过了,所以没有红X。

image

3.右键错误item,选择 quick fix

Eclipse error:can't find api database,api check not performed_第1张图片

4.选择Disable Check in This Project就行了。


转自:https://blog.csdn.net/xuewater/article/details/44339041

你可能感兴趣的:(Android)