Reputation: 407
I have been working on an android project, and recently imported to Eclipse at home. Once I imported my project to Eclipse I suddenly have a lot of new java errors, which I didn't have in my previous environment. I have cleaned the import and removed some of the path errors, but I'm not sure what I should do next. I believe that these errors are most likely the result of something I have done stupidly on my part, but I am not sure.
Upvotes: 0
Views: 426
Reputation: 6809
You most likely have the incorrect SDK installed or you don't have the Android ADT installed on your Eclipse.
http://developer.android.com/sdk/installing/installing-adt.html
Upvotes: 2
Reputation: 1900
check your Android Manifest file and specify correct sdk version. Also check project properties to verify that you are using correct version of android sdk to compile the project. EDIT : If possible send a screenshot of your manifest and android properties dialog for this project.
Upvotes: 1