0

When I start a new Android project in Eclipse. I get the following errors

No resource found that matches the given name 'theme.appcompact.light.darkactionbar';

No resource found that matches the given name 'theme.appcompact.light';

No resource found that matches the given name '(at 'icon' with value '@drawable/ic_launcher')

I don't change the code or anything but these errors appear.

henrycarteruk
  • 12,708
  • 2
  • 36
  • 40
Arjun
  • 1

1 Answers1

0

You are missing AppCompat library reference. Check this other question for your first two problems: No resource found - Theme.AppCompat.Light.DarkActionBar

For the missing ic_launcher, you need to have an icon on your drawable folder. Put any PNG file with the name ic_launcher in your drawable folder and error should be gone. But been this a freshly started new project, maybe you removed it by accident?

Community
  • 1
  • 1
Olaia
  • 2,172
  • 25
  • 27