error: exportArchive: The data couldn’t be read because it isn’t in the correct format.

在执行ios 打包的时候,我们通过执行下面的指令来打包ipa:

mkdir arch
archive_path=arch/${app_name}.xcarchive
workspace_name=HPPlayTVAssistant
xcodebuild clean -workspace ${workspace_name}.xcworkspace -scheme ${app_name} -configuration $ios_type
xcodebuild archive -workspace ${workspace_name}.xcworkspace -scheme ${app_name} -archivePath $archive_path -configuration $ios_type
echo export ipa ....
xcodebuild -exportArchive -archivePath $archive_path -exportPath arch/target_ipa -exportOptionsPlist ${app_name}/${app_name}/Info.plist

在最后的export ipa的时候报错如下:

error: exportArchive: The data couldn’t be read because it isn’t in the correct format.

具体如下:

解决办法:

需要把xcode上的BitCode关闭,设置成No即可,project和targets里面对应的BitCode都需要关闭,如

(因为xocde默认是打开的Yes)

如果有几个project的话,都改下。

原文地址:https://www.cnblogs.com/zndxall/p/12055267.html

时间: 2024-09-30 09:50:47

error: exportArchive: The data couldn’t be read because it isn’t in the correct format.的相关文章

iOS国际化时遇到的错误:read failed: the data couldn't be read because it isn't in the correct format.

其实这个错误很简单,就是当我们在国际化的时候,写key,写着写着就忘了加 ";" 所以查看一下自己的Localization文件就可以了 iOS国际化时遇到的错误:read failed: the data couldn't be read because it isn't in the correct format.

iOS国际化时遇到的错误:read failed: the data couldn't be read because it isn't in the correct format.

事实上这个错误非常easy,就是当我们在国际化的时候,写key,写着写着就忘了加 ";" 所以查看一下自己的Localization文件就能够了 iOS国际化时遇到的错误:read failed: the data couldn't be read because it isn't in the correct format.

如何解决:ERROR: the user data image is used by another emulator. aborting 的问题

问题概述: 在启动Android模拟器时出现以下错误,导致启动失败. ERROR: the user data image is used by another emulator. aborting. 原因: 系统判断你当前已经启动了另外一个emulator,可能是某些正常操作或异常退出造成的. 解决方法: 进入你avd目录下: 如:C:\Documents and Settings\Administrator\.android\avd\android2.3.avd 删除以lock结尾的文件夹.

插入中文错误ERROR 1406 (22001): Data too long for column 'name' at row 1

1.在导入数据前执行以下命令即可:set SESSION sql_mode=''; 通过设置sql_mode变量更改模式.linux下安装完mysql后,默认的sql-mode值是空,在这种情形下mysql执行的是一种不严格的检查,例如日期字段可以插入’0000-00-00 00:00:00’这样的值,还有如果要插入的字段长度超过列定义的长度,那么mysql不会终止操作,而是会自动截断后面的字符继续插入操作. 但是如果我们本意希望如果长度超过限制就报错,那么我们可以设置sql_mode为STRI

导入转储文件的时候:Error Code: 1406. Data too long for column - MySQL

MySQL will truncate any insert value that exceeds the specified column width. to make this without error try Switch your MySQL mode to not use STRICT. here some docs EDIT: To change the mode This can be done in two ways: Open your "my.ini" file

"Asp.Net Web Api MediaTypeFormatter Error for x-www-formurlencoded data" 解决方法

遇到标题中所说的问题原因是使用 jQuery AJAX 以 POST 方式调用 Asp.Net Web API .解决办法请看以下代码中有注释的部分. public static class WebApiConfig { public static void Register(HttpConfiguration config) { config.Formatters.Clear(); config.Formatters.Add( new JsonMediaTypeFormatter { Seri

报错处理——Error getting repository data for epel, repository not found

报错原因 系统中未启用 RHEL/CentOS 7.x/6.x/5.x 的 EPEL 存储库. EPEL 代表企业 Linux 及其在线分布式的额外软件包,可以由 yum 程序自动下载和安装. 只要启用了此选项,错误就会解决 解决方法 CentOS7 # 如果没有安装 wget 需要先 yum install wget wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm rpm -ivh epel-

iOS解析数据时Error=3840

1.解析JSon数据格式出错的问题 unescaped control character around character XXXX 和 The data couldn’t be read because it isn’t in the correct format. Error的错误码为3840 出现这种情况时,一般是json数据中的不规范造成的,json数据中也许有转义字符的出现导致了这种情况,如有/t/n/0等出现 数据不太规范解决方法:1.后台修改数据 2.自己项目中判断数据,就拿AF

iOS本地化

本地化与相机中显示英文 一.当你发现相机中显示英文,可以通过它设置 添加一项“Localized resources can be mixed”,值设置为“yes”即可!在InfoPlist文件中 NSLocalizedString(key, comment),在代码中使用NSLocalizedString(key, comment)来读取本地化字符串,key是Localizable.strings文件中等号左边的字符串,comment纯粹是注释 如:NSString *tip = NSLoca