There are several ways to compile your app. You can use the simulator/emulator, deploy it to your device or create store apk's/ipa's. There is also a live test tool (TiShadow) which saves you a lot of time waiting for the compiler.
# android to device ti build -p android -T device # android to store/file ti build -p android -K /home/user/keyfile.keystore -T dist-playstore # iOS simulator - will show a menu to select the size/device ti build -p ios -C ? # iOS to ipa - will show a menu to select the keys ti build -p ios --deploy-type production --ios-version 9.0 --keychain --target dist-adhoc --output-dir .iOS related
To list all distribution names you can use:
security find-identity -v -p codesigning
source: https://github.com/m1ga/titanium_with_atom#compile-your-app