Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Download previous versions of Titanium SDK

I recently had to format my Mac and lost all my Ti sdks. After Reinstalling Appcelerator Studio I currently have only Ti SDK 5.2.0.GA available which is causing my app to crash on devices having Android Marshmallow which didn't happen on 5.0.0.GA or below. Is there anyway I can install the previous version of Titanium SDK's and use it.

like image 921
blindbat Avatar asked Mar 08 '16 05:03

blindbat


People also ask

Is the previous Titanium SDK patch release supported?

As of this GA release, the previous Titanium SDK patch release (10.1.0) is no longer supported.Axway support for this version and prior versions released by Axway will be discontinued after March 1, 2022.

What are the earlier versions of the BitTitan SDK?

Earlier versions of the SDK may be named "MigrationWiz PowerShell," or "BitTitan PowerShell." If you need to keep the deprecated package to support legacy scripts, you can do so as it should not conflict with the new package. Before installing the BitTitan SDK, make sure you have installed the prerequisites:

How do I update the BitTitan SDK for PowerShell?

The BitTitan SDK is updated periodically. Return to this page periodically to download and install the latest version. Check your SDK version by going to Control Panel , Programs and Features, then locate BitTitan PowerShell in the list of installed programs.

What version of Android Studio should I download?

This page provides an archive of Android Studio releases. However, we recommend that you download the latest stable version or the latest preview version. Before downloading, you must agree to the following terms and conditions.


2 Answers

The easiest way, via CLI (command line interface).

Get the SDK titanium list

appc ti sdk list

Install titanium SDK

appc ti sdk install [<version>] [--default] [--force] [--branch <branch name>]

ex : appc ti sdk install 9.2.1.GA

Available SDK with appc

enter image description here

Appc info here

like image 66
WhiteLine Avatar answered Sep 19 '22 12:09

WhiteLine


Above solution is correct, But for above steps you want appc username and password. If you dont have user name and password then try next command.

titanium sdk enter image description here

titanium sdk install 5.2.0

after installing check

titanium sdk enter image description here

If you downloaded sdk from other sources and now you have to put sdk in your titanium path then go to following path

/Users/rahul/Library/Application Support/Titanium/mobilesdk

and place your downloaded sdk in above folder. enter image description here

like image 43
rahul.sapkal23 Avatar answered Sep 20 '22 12:09

rahul.sapkal23