Steven
Steven

Reputation: 149

Does Eclipse tell what minSdkVersion to use in Android?

does Eclipse tell me for what SDKVERSION my code would not work with? I set the minSdKversion to 4 - and it seem to work, but I dont know really if all components i am using will work on a 4sdk-device^^ is there any method do know what my really minSdk ist?

Upvotes: 0

Views: 47

Answers (1)

Ojonugwa Jude Ochalifu
Ojonugwa Jude Ochalifu

Reputation: 27256

Not directly, but you will/might get warnings in other parts of your application like this:

enter image description here

which says

Attribute "uiOptions" is only used in API level 14 and higher (current min is 4)

I suggest you take a look at the Dashboard site from Google, which

provides information about the relative number of devices that share a certain characteristic, such as Android version or screen size. This information may help you prioritize efforts for supporting different devices by revealing which devices are active in the Android and Google Play ecosystem.

As you can see, the lowest minSDK version is 8.

Upvotes: 2

Related Questions