xcode 6 exporting ipa 提示 Your account already has a valid iOS distribution certificate 的另一种解决方法
背景:
1. XCode 6.1
2. 证书:develop 证书
3. Scheme 为Device
操作:
在Product - Archive 包过程中,选择Save for Ad hoc Deployment模式【给内部人员测试】,export包时,弹出了如下提示
后来在http://www.thecave.com/2014/09/16/using-xcodebuild-to-export-a-ipa-from-an-archive/找到了原因和解决方案
具体实施如下:
用xcodebuild 和 xrun工具打包,操作比较简单。
1. 打开terminial, 进入到项目文件(xxxx.xocdoeprj)的目录下
2. 执行xcodebuild clean命令
3. 执行如下命令,其中-Target后面的参数,即为:当前项目的Target名字
4. 执行如下命令,完成打包
以上参考:
http://www.thecave.com/2014/09/16/using-xcodebuild-to-export-a-ipa-from-an-archive/
http://www.cnblogs.com/bandy/p/4070781.html
xcode 6 exporting ipa 提示 Your account already has a valid iOS distribution certificate 的另一种解决方法的更多相关文章
- xcode 6 exporting ipa 提示 Your account already has a valid iOS distribution certificate
		在Product - Archive 包过程中,选择Save for Ad hoc Deployment模式[给内部人员测试],export包时,弹出了如下提示 自己遇到时候问题:首先adhoc需要本 ... 
- Your account already has a valid iOS Distribution certificate!
		iOS 发布提交出现:Your account already has a valid iOS Distribution certificate!问题解决 转载的链接 http://www.jia ... 
- 上传ipa文件时报错 Your account already has a valid iOS distribution certificate
		这个问题是因为你本机的生产证书是在别人的电脑上创建的,所以才会提示你已经有一个有效的生产证书,但是没有安装到本地: 
- 使用Xcode6.1.1打包出现Your account already has a valid iOS Distribution certificate问题
		1.问题描述: 使用客户证书在Xcode6.1.1上进行打包测试,出现如下问题,查看网上也很多类似错误且解决办法各异. 2.我的解决办法: 让客户将开发.发布证书重新revoke掉之后重新创新并给到p ... 
- 关于asp.net 网站网站发布时提示:错误 27 对路径 AppData\Local\Temp\~632b\bin\App_Code.compil的解决方法
		关于asp.net 网站网站发布时提示:错误 27 对路径 AppData\Local\Temp\~632b\bin\App_Code.compil的解决方法 问题如下图所示,方法是去掉: <i ... 
- SQL2008无法附加数据库,提示“无法显示请求的对话框”(nColIndex实际值是-1)图文解决方法
		SQL2008无法附加数据库,提示“无法显示请求的对话框”(nColIndex实际值是-1)图文解决方法 SQL2008无法附加数据库,提示“无法显示请求的对话框”(nColIndex实际值是-1)图 ... 
- sudo 提示 'xxx is not in the sudoers file.This incident will be reported.的解决方法'
		在使用 Linux 的过程中,有时候需要临时获取 root 权限来执行命令时,一般通过在命令前添加 sudo 来解决. 但是第一次使用 sudo 时,有可能会得到这样一个错误提示 xxx is not ... 
- IntelliJ IDEA提示URI is not registered几种解决方法
		IntelliJ IDEA提示URI is not registered几种解决方法使用IntelliJ IDEA (以下简称IDEA)导入项目或是在maven生成 archetype时候,如果提示 ... 
- 【iOS】Your account already has a valid ios
		打包内测的时候遇到了这个问题,如图所示: 官网解决办法: If the certificate already exists in Member Center, a “Your account alr ... 
随机推荐
- winform 使用Anchor属性进行界面布局
			每个控件的定位方法: 一.使用Anchor: Anchor分为Left.Top.Right.Bottom四个属性. 它们的含义如下: Top——表示控件中与父窗体(或父控件)相关的顶部应该保持固定. ... 
- hdu2010(dfs+剪枝)
			Tempter of the Bone Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Othe ... 
- nginx限速白名单配置
			在<nginx限制连接数ngx_http_limit_conn_module模块>和<nginx限制请求数ngx_http_limit_req_module模块>中会对所有的I ... 
- vue cli & vue 3.x
			vue cli & vue 3.x https://cli.vuejs.org/dev-guide/ui-api.html#ui-api https://cli.vuejs.org/zh/gu ... 
- RabbitMQ-Java客户端API指南-下
			RabbitMQ-Java客户端API指南-下 使用主机列表 可以将Address数组传递给newConnection().的地址是简单地在一个方便的类com.rabbitmq.client包与主机 ... 
- zoj 1002 Fire Net (二分匹配)
			Fire Net Time Limit: 2 Seconds Memory Limit: 65536 KB Suppose that we have a square city with s ... 
- [CF954G]Castle Defense
			题目大意:有$n$个点,每个点最开始有$a_i$个弓箭手,在第$i$个位置的弓箭手可以给$[i-r,i+r]$区间加上$1$的防御,你还有$k$个弓箭手,要求你最大化最小防御值 题解:二分答案,从右向 ... 
- Hadoop入门(五) Hadoop2.7.5集群分布式环境搭建
			本文接上文内容继续: server01 192.168.8.118 jdk.www.fengshen157.com/ hadoop NameNode.DFSZKFailoverController(z ... 
- Codeforces 932.B Recursive Queries
			B. Recursive Queries time limit per test 2 seconds memory limit per test 256 megabytes input standar ... 
- Postfix+Sasl+Courier-authlib+Dovecot+MySQL+extmail  邮件系统部署
			# yum remove postfix ##删除系统自带postfix# userdel postfix# groupdel postdrop# groupadd -g 2525 postfix# ... 
