说起苹果手机和iOS系统大家都非常熟悉,毕竟苹果市场虽然近些年受到国产手机的冲击,但在我国依然占据一定的市场。因此,有朋友询问小编,我们说ipa是需要
ipa签名的,那么到底是怎么签的呢?今天小编就带大家了解一下ipa重签名的具体流程·
1.企业开发$299美金帐户
2.登录https://developer.apple.com
3.创建certificates证书,并安装. 通过钥匙串得到证书名称:"iPhone Distribution:xxxxxx,Inc."
4.创建Distribution, In House 的 provisioning。并下载下来命名为inhouse.mobileprovision, 并得到对应的App ID标识,
5.解压ipa得到Playload目录, unzip demo.ipa
6.删除Playload/demo.app/_CodeSignature
7.替换描述文件, cp inhouse.mobileprovision Payload/demo.app/embedded.mobileprovision
8.准备Entitlements.plist文件,内容如下:
application-identifier
5SL94KPMG3.com.xxxx.xxx
com.apple.developer.team-identifier
5SL94KPMG3
get-task-allow
keychain-access-groups
5SL94KPMG3.com.xxxx.xxx
其中application-identifier的值要对应mobileprovision里的App ID标识. eg. 5SL94KPMG3.com.xxxx.xxx
com.apple.developer.team-identifier, 则要填写 App ID. eg. 5SL94PMG3
keychain-access-groups, 数组的第一项,建议与 application-identifier 一样。
9.重新签名ipa
codesign -f -s "iPhone Distribution: xxxxx,Inc." --entitlements Entitlements.plist Payload/demo.app/
其中 -s 后面带的名称是 certificates文件的证书名称(参照第3点)
10.压缩成ipa包, zip -r new_demo.ipa Payload