編譯你的應用程式
有幾種方法可以編譯你的應用程式。你可以使用模擬器/模擬器,將其部署到你的裝置或建立儲存 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