Can't run Eclipse project - can't find API database
I have solved it differently. In manifest I had:
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="19" />
The problem was that after installation of new Eclipse ADT, in "Android SDK Manager" I didn't have any SDK Platform installed, so I have installed API 19 SDK Platform & Documentation & Sources.
I would also install API 9, but for some reason it is missing in SDK Manager.
Anyway, after this I have edited the android:minSdkVersion="10"
-> SAVE -> again changed to android:minSdkVersion="9"
-> SAVE
...and the problem was gone.
I fixed it. In manifest I had in uses-sdk minSdkVersion specified but I didn't have targetSdkVersion. After addition of the targetSdkVersion parameter it compiled and ran.
- go to your
Manifest
- click on
Uses Sdk
- change
Min SDK version
to9
or something else and pressctrl+s
(save) - error should disappear now
- change
Min SDK version
back to your original value
That solved it for me.