Mehmed Mert
Mehmed Mert

Reputation: 1103

How to revert Android SDK Tools to an earlier revision?

Is it possible to revert Android SDK Tools to an earlier revision (for example from r17 to r16 or r15)?

Upvotes: 14

Views: 13870

Answers (3)

Ankit
Ankit

Reputation: 1916

@erbsman this is not possible to download old version of sdk tool from Android too. because it uses an xml file(check logs on ANDROID TOOL) to get location of all zip files. so you have to do some kind of hack for that. check out following link for hack

Download the Android SDK components for offline install

Upvotes: 2

Hounshell
Hounshell

Reputation: 5459

The problem you're having has to do with a change the Android team made to how lib jars are referenced.

Does this solve the problem? http://android.foxykeep.com/dev/how-to-fix-the-classdefnotfounderror-with-adt-17

Upvotes: 0

Carl-Emil Kjellstrand
Carl-Emil Kjellstrand

Reputation: 1243

Download the older tools, and delete the new ones and unpack the old ones and your done. Is nothing more to it than that. The tools can be downloaded from the "android" program in the tools directory of you current sdk.

android-sdk-linux-17/tools$ ./android

Upvotes: 2

Related Questions