Ryan
Ryan

Reputation: 1797

Can't find android sdk 2.3.4 in SDK manager

I'm having problems finding the 2.3.4 sdk in the Android SDK Manager download list. I updated the SDK tools to r11 and my platform-tools to r5 but 2.3.4 won't show up. Is there something I'm missing?

Upvotes: 8

Views: 9876

Answers (2)

Bactos
Bactos

Reputation: 1243

Check out Android 2.3.4

API Level

"The Android 2.3.4 platform does not increment the API level — it uses the same API level as Android 2.3.3, API level 10.

To use APIs introduced in API level 10 in your application, you need compile the application against the Android library that is provided in the latest version of the Google APIs Add-On, which also includes the Open Accessory Library.

Depending on your needs, you might also need to add an android:minSdkVersion="10" attribute to the element in the application's manifest. If your application is designed to run only on Android 2.3.3 and higher, declaring the attribute prevents the application from being installed on earlier versions of the platform.

For more information about how to use API Level, see the API Levels document."

Upvotes: 5

Mark Roberts
Mark Roberts

Reputation: 1044

Google didn't release 2.3.4 into the SDK because it contains only bug-fixes. It doesn't add or change any APIs, so there is no need for an update on 2.3.3.

Upvotes: 3

Related Questions