Reputation: 347
In api 17 it is working but when I installed the application in the gingerbread version of android 2.3 version it was showing unfortunately stopped application.
Upvotes: 1
Views: 99
Reputation: 7259
For the action bar you could use sherlock actionbar for android api levels below 11
Upvotes: 0
Reputation: 1485
In project structure choose android api 8 and you will see what android features you used that do not support android 8.
To Ciril:
Upvotes: 1
Reputation: 420
It may cause by two reasons,
1) If you try to use the higher version features like listView, Tabbed layout etc. The listView support only in api level 11 or higher.
2) If you don't have the proper support libraries in your project. To solve this error Right click on the project -> Select Android Tools -> Add Support Library.
Then Eclipse will find the proper library, if it is the reason for the error.
Upvotes: 0