terminal generate ipa

1) cd xx.xcodeproject

2) xcodebuild –list

3) xcodebuild –target $TARGET –sdk iphoneos –configuration Release

4) xcrun -sdk iphoneos PackageApplication -v “${TARGET}.app” -o “${OUTDIR}/${TARGET}.ipa” –sign “${IDENTITY}” –embed “${PROVISONING_PROFILE}”

参数:

${TARGET}.app                == Target path (ex :/Users/XXXXXX/desktop/Application/build/Release-iphoneos/MyApp.app)
${OUTDIR}                    == Select the output directory(Where you want to save .ipa file)
${IDENTITY}                   == iPhone Developer: XXXXXXX (XXXXXXXXXX)(which can be obtained from Keychain access)
${PROVISONING_PROFILE}   == Path to the provisioning profile(/Users/XXXXXX/Library/MobileDevice/Provisioning Profiles/XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX.mobileprovision”)

https://github.com/facebook/xctool

https://github.com/gcerquant/xcodearchive

terminal generate ipa

时间: 2024-09-30 19:02:10

terminal generate ipa的相关文章

使用 fastlane 实现 iOS 持续集成(转)

http://www.cocoachina.com/ios/20150916/13433.html 简介 持续集成是个“一次配置长期受益”的工作.但很多小公司都没有.以前在做Windows开发配置感觉简单一些,这次配置iOS的,感觉步骤还挺多.整理出来,分享给大家,不正确的地方请及时指正. 本文主要使用fastlane配置iOS的持续集成,自动编译.打包出多个版本. 最近转行iOS开发,首要任务是使用Jenkins(算是hudson的兄弟)配置iOS工程的持续集成. 查找各种资料后,整理出以下几

SSH keys Generate

An SSH key allows you to establish a secure connection between your computer and GitLab. Before generating an SSH key, check if your system already has one by running cat ~/.ssh/id_rsa.pub. If you see a long string starting with ssh-rsa or ssh-dsa, y

How to: Enable/Generate/Debug Core Dump In Linux?

http://www.itsprite.com/how-to-enablegeneratedebug-core-dump-in-linux/ What is Core Dump? If the running programs were terminated abnormal or crashed, the memory status ot the program will be recored by OS and saved in a file, this file is called “Co

Xcode 6 打包ipa文件

随着Xcode6.1的普遍应用,随之而来的很多问题就会出现,这里来说一下如何在Xcode6.1上生成Ad-hoc ipa.首先是要在你的开发者账号上生成一个.ipa的主要应用就是在你发布到AppStore之前,客户用来测试的. 好了,现在我们来说一下怎样在Xcode6.1下生成ipa文件.在这里,关于证书的配置,设备的添加就不在啰嗦的赘述了,直接从Ad-hoc profile生成开始.PS:如果你没有证书,请飞过. 首先,要在开发者中心进行Ad-hoc profile的配置和生成.并下载下来.

xcode工程命令行生成ipa安装包

主要使用两个命令 xcodebuild:将xcode工程打包成.app文件 xcrun:将app打包成.ipa文件 下面是写好的ant脚本: 1 <?xml version="1.0" encoding="UTF-8"?> 2 <project default="release" name="PackageForIOS" basedir="."> 3 <property nam

Generate eps plot with appropriate font size and line width in GNU Octave

Because eps terminal is different from the one for screen display, the font size and line width should all be adjusted as the following example: clist = GenColorList(); h = 1; figure(h); clf(h); # This is mandatory. ## Set the axis position. Sometime

【原】ios打包ipa的四种实用方法(.app转.ipa)

总结一下,目前.app包转为.ipa包的方法有以下几种: 1.Apple推荐的方式,即实用xcode的archive功能 Xcode菜单栏->Product->Archive->三选一,一般选后两个. 局限性:个人开发一般采用这种方法,但是当一个证书多人使用时就稍显麻烦.一般多 人开发时都是采用provisioning profile+P12文件来进行真机调试.上述方法在最后导出ipa包时需要输入appleID,这时还要向团队的其他人要.采用 provisioning profile+P

Q8:在iOS Dev Center进行证书申请以及生成iPa文件给别人玩

iOS发开蛋疼集锦下 Write by iceAna Team 2.Bie~~,App(Submit app into Store) 01.前言 iOS真机调试上集回顾,倘若还未看过请猛戳这里.我简单总结下: 写完代码,选中我们的iPhone.iPad等设备(在开发者账号中注册过),在Xcode下可以进行真机调试. 将项目代码.开发者证书.**密钥**.开发者账号打包,传输到到另外一台Mac,即可在另外一台电脑进行真机调试,当然前提是设备都必须注册过. 注意到开发证书以及密钥,对于某些朋友比较陌

Options often used in javac; Terminal on mac

Some notes when following UCB's CS61B Here I list some options that may be often used in javac( to be continued): specify a directory where .class will be put:   -d  Set the destination directory for class files. The directory must already exist; jav