编译你的应用程序
有几种方法可以编译你的应用程序。你可以使用模拟器/模拟器,将其部署到你的设备或创建存储 apk / ipa。还有一个实时测试工具(TiShadow),可以节省你等待编译器的大量时间。
cli 方式
# 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 相关
要列出你可以使用的所有分发名称:
security find-identity -v -p codesigning
来源: https : //github.com/m1ga/titanium_with_atom#compile-your-app