Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 463
Ryan Avatar asked Jun 18 '11 21:06

Ryan


People also ask

How do I fix Android SDK not found?

The Cause for this error -SDK tools package might not be installed. Quick fix: Go to the Tools –> SDK manager –> SDK tools. Deselect Hide obsolete packages option on the right bottom and further install Android SDK Tools(obsolete). A new folder named Tools is now generated in the SDK directory.

How do I find Android SDK Manager?

To open the SDK Manager from Android Studio, click Tools > SDK Manager or click SDK Manager in the toolbar. If you're not using Android Studio, you can download tools using the sdkmanager command-line tool.

Where is the Android SDK located?

By default, the Android SDK root folder is located at ~/. katalon/tools/androidsdk.

How do I know if Android SDK is installed?

In Android Studio, click File > Project Structure. Select SDK Location in the left pane. The path is shown under Android SDK location.


2 Answers

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."

like image 159
Bactos Avatar answered Oct 01 '22 18:10

Bactos


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.

like image 21
Mark Roberts Avatar answered Oct 01 '22 17:10

Mark Roberts