dileep
dileep

Reputation: 347

I have developed an application that is working on the api17 but it was unable to work on api 8 but I have given the minimum sdk as 8

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

Answers (3)

DSS
DSS

Reputation: 7259

For the action bar you could use sherlock actionbar for android api levels below 11

Upvotes: 0

resource8218
resource8218

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:

ListView supports from api 1

Upvotes: 1

Ciril
Ciril

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

Related Questions