【Titanium】ビルドしたときにzipalignエラー

titanium_errorネットで拾った古いソースコードを古いSDKでビルドしたときに下記エラーに遭遇した。

環境: Mac OS X 10.9.4, Titanium SDK 3.3.0.GA, Android SDK Tools 23.0.2

[ERROR] Unable to find Android SDK tools: zipalign.
[ERROR] You have an incomplete or out-of-date installation.
[ERROR] Verify your Android SDK packages or reinstall the Android SDK by running 'titanium setup android' or manually downloading from http://appcelerator.com/android-sdk.

下記サイトを参考にAndroid SDKにあるzipalignをコピーする

$ cd /Applications/android-sdk-macosx/
$ cp build-tools/19.1.0/zipalign tools/

これでビルドは通った。

元に戻すときは削除するだけ。
$ rm -rf tools/zipalign

 

< Related Posts >