iOS打包常见错误

升级Xcode8.2后,构建失败:

error: /usr/bin/codesign --force --preserve metadata=identifier,entitlements,resource-rules --sign"

Warning: usage of --preserve-metadata with option "resource-rules" (deprecated in Mac OS X >= 10.10)! Warning: --resource-rules has been deprecated in Mac OS X >= 10.10!

这是因为在osx10.10以上的系统上,“resource-rules”不再使用。

解决办法:

找到/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/PackageApplication,找到并删除红色部分

my @codesign_args = ("/usr/bin/codesign", "--force", "--preserve-metadata=identifier,entitlements,resource-rules",
"--sign", $opt{sign},
"--resource-rules=$destApp/ResourceRules.plist");
时间: 2024-09-30 09:23:27

iOS打包常见错误的相关文章

Android打包常见错误之Export aborted because fatal lint errors were found

打包时报如下错误: <ignore_js_op> Export aborted because fatal lint errors were found. These are listed in the Lint View. Either fix these before running Export again,or turn off"Run full error check when exporting app" in the Android > Lint Err

iOS开发 常见错误

一.NSAppTransportSecurity 错误提示:NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802) iOS9让所有的HTTP默认使用了HTTPS,原来的HTTP协议传输都改成TLS1.2协议进行传输.直接造成的情况就是App发请求的时候弹出网络无法连接.解决办法就是在项目的info.plist 文件里加上如下节点: NSAppTransportSecurity - NSAllow

iOS开发常见错误解决方法

1.出现下面的错误: StoryboardApp[8593:207] Failed to instantiate the default view controller for UIMainStoryboardFile 'MainStoryboard' - perhaps the designated entry point is not set? 这个问题的原因应该是在你的StoryBoard中没有一个view controller设置了Initial Scene.您需要选择一个view co

iOS开发常见错误

错误1: 1.1这种错误都是storyboard有问题 解决:当前storyboard的Custom Class是MJViewController,代码中MJViewController继承自UITableViewController. 而storyboard目前提供的是UIViewController,并没有为MJViewController提供TableView.这样的话就会报上图中的错. 控制器中真实的控制器类型 解决问题的方法是删除掉storyboard中的原来的UIViewContro

IOS开发常见错误整理

1.Cannot create an NSPersistentStoreCoordinator with a nil model 这是在执行到这段代码时引发的: 1 - (void)viewDidLoad { 2 [super viewDidLoad]; 3 UIApplication *application = [UIApplication sharedApplication]; 4 id delegate=application.delegate; 5 self.context=[dele

Mac &amp; iOS开发常见错误

 1Xcode左侧不显示工程文件目录,提示NO Filter Results 解决办法:What solved was to go to Navigate > Reveal in Project Navigator. After this, the structure appeared again.

ios 学习总结day01关于UIview和IBAction 常见错误

UIKit - 创建和管理应用程序的用户界面 QuartzCore -提供动画特效以及通过硬件进行渲染的能力 CoreGraphics -提供2D绘制的基于C的API CoreLocation -使用GPS和WIFI获取位置信息 MapKit -为应用程序提供内嵌地图的接口 AVFoundation – 音频处理 iOS开发种常见的问题 day 01 UIview 就是屏幕上可以看得见的摸得到的 比如屏幕上的按钮.文字.图片 一般翻译叫做视图\控件\组件 父控件与子控件之间的关系 父控件中容纳好

ios常见错误之 Failed to instantiate the default view controller for UIMainStoryboardFile &#39;Main&#39; - perhaps the designated entry point is not set?

Failed to instantiate the default view controller for UIMainStoryboardFile 'Main' - perhaps the designated entry point is not set? 这是因为给你的StoryBoard没有设置默认显示的controller, 解决方法: from:http://my.oschina.net/u/936286/blog/316565 ios常见错误之 Failed to instanti

iOS开发——错误总结篇&amp;开发中常见错误和警告总结(三十三)

开发中常见错误和警告总结(三十三) 动画冲突 错误: Unbalanced calls to begin/end appearance transitions for <uivewcontroller> 解决方法1:去掉动画 解决方法2:监听当前view的动画是否完成 解决方法就是,加一个BOOL型的变量,检查是否在做动画. 1 2 if (transiting) { 3 return; 4 } 5 transiting = YES; 6 [self transitionFromViewCon