“Cannot find API database, API check failed” in Android App SDK with Eclipse

I am launching a new Android application using the Android SDK on Eclipse, creating tools 19.0.2 on a Windows 7 PC. At some point during my work I began to receive the error message "Unable to find API database, API check was not done. " This error does not appear in the code, but instead displays a red X in the project folder and a line error in the Problems window. There is a previous question on this topic, but this did not work for me. I already tried setting the target and minimum SDKs in the manifest and reinstalling the SDK several times. This problem also occurs with the only other project in my workspace and shows the same error. Thank you in advance for any help.

+8
android eclipse api sdk
source share
2 answers

For me, Eclipse -> Project -> Clean ... enough for everything to be correct: enter image description here

+22
source share

The following works for me:

  • Make sure you install the SDKs specified in your version of manifest.xml , i.e. the mini version and the target version.
  • Click the red x in the right-hand toolbar that has the prompt “Problems (...)” if you move the cursor over it.
  • Right click on your error, select quick fix .
  • Choose Disable Check in This Project
+10
source share

All Articles