xarzu
xarzu

Reputation: 9499

I need an older version of the Android SDK. Where can I find it?

I need to get version 19.0.2 of the Android SDK Platform tools. It is a long story but basicaly the OS usins glibc version 2.5. So I need an older version of the SDK. Google does not tell me directly where I can find it.

Upvotes: 2

Views: 8455

Answers (4)

user1050755
user1050755

Reputation: 11691

I had a look at the repository descriptors:

https://dl-ssl.google.com/android/repository/repository-7.xml

Maybe it works when if you download and install it manually:

https://dl-ssl.google.com/android/repository/platform-tools_r19.0.1-linux.zip

Upvotes: 0

iFeli
iFeli

Reputation: 395

See this answer for getting earlier versions of the Android ADT plugin for Eclipse.

Then just download the SDK you need after installing the ADT Version that you want. Keep in mind that prior to rev 23, the most recent version was 22.6.3, so you can simply change the URL to those numbers and get the latest version prior to the L Preview release.

Upvotes: 0

CodeWarrior
CodeWarrior

Reputation: 5176

To use a specific version of the Build Tools in your application project. Refer :

https://developer.android.com/tools/revisions/build-tools.html

enter image description here

Upvotes: 0

Alex
Alex

Reputation: 2013

In the Android SDK manager, you can download the 19.0.2 of the android sdk.

The SDK manager is located {ANDROID_SDK_DIRECTORY}/tools/android

Here is a screenshot.

Download Old SDK image

Upvotes: 3

Related Questions