Reputation: 2667
I just imported an Android project into Eclipse, and am getting the above error. Anyone know how to fix this?
Thanks.
Upvotes: 1
Views: 6433
Reputation: 1
simply changing
<uses-sdk android:minSdkVersion="7">
to
<uses-sdk android:minSdkVersion="8">
in mainfest.xml will fix the problem
Upvotes: -1
Reputation: 2667
To fix this, simply go into Eclipse and click on the Android SDK Manager (the green android button with the down arrow just to the right of the print button). Download the appropriate SDK. In this instance it would be "Google APIs - 7". Restart eclipse and then clean your project (Project -> Clean) if necessary.
Upvotes: 3