views:

120

answers:

2

Hi,

I'm using Eclipse with the Android SDK. I installed The SDK platform Android 1.6, API 4 using Android SDK and AVD manager, but I can't find the corresponding documentation in the list of the available packages (there's only the doc for the API 7). Where can I find it?

thanks

jul

+1  A: 

Well in the documentation, you see "Since API level x". If whatever was not available yet in Android 1.6, you'll know. You'll also know if certain things are deprecated.

Po
A: 

The documentation for API 7 includes the documentation for all previous versions. It's just an offline copy of the Android Developer website. Just as you can see there, next to every method and class in the 'reference' section there's a note saying "Since API x", telling you when it became available.

By the way, and this is my personal opinion only, but there isn't much point in developing for v1.6. As you can see from the official statistics, one third of devices are still running v1.5. It's better to use the trick described here about settings the minimum SDK version to 3, yet targetting SDK 4 to allow you to support multiple screens but ensure compatibility with all versions.

Steve H
Ok, thanks for the tip.
jul