Charles
Charles
> 应该是系统bug:https://developer.apple.com/forums/thread/128625 > 除了打印的错误日志,有引起什么使用异常吗? 你好,谢谢回复。 除了打印错误日志,还会导致 didFinishPickingVideoHandle 这个回调会没有执行。
> 应该是系统bug:https://developer.apple.com/forums/thread/128625 > 除了打印的错误日志,有引起什么使用异常吗? 补充一下调试的截图,发现这个方法两个回调都没有执行到。所以会导致 didFinishPickingVideoHandle 没有执行。这个可以加一下异常出来吗?让 didFinishPickingVideoHandle 可以执行。 `TZImageManager.m` > `- (PHImageRequestID)getPhotoWithAsset:(PHAsset *)asset photoWidth:(CGFloat)photoWidth completion:(void (^)(UIImage *photo,NSDictionary *info,BOOL isDegraded))completion progressHandler:(void (^)(double progress, NSError *error, BOOL *stop, NSDictionary *info))progressHandler networkAccessAllowed:(BOOL)networkAccessAllowed...
> Same problem here 😞 it works ok after i did something below update /Library/Ruby/Gems/2.6.0/gems/cocoapods-packager-1.5.0/lib/cocoapods-packager/builder.rb ```ruby def ios_build_options "ARCHS=\'$(ARCHS_STANDARD)\' OTHER_CFLAGS=\'-fembed-bitcode -Qunused-arguments\'" end ````
> > > Same problem here 😞 > > > > > > it works ok after i did something below > > update /Library/Ruby/Gems/2.6.0/gems/cocoapods-packager-1.5.0/lib/cocoapods-packager/builder.rb > > ```ruby > >...
> Thanks for the report. Can you answer a few questions that will help us get to the bottom of this? > > 1. Was the tree completely blank, or...
> @chakbun could you please[ try changing the port number in VSCode](https://github.com/flutter/devtools/issues/5038#issuecomment-1381605514)? This sounds familiar to a caching issue, so I'd like to rule that out :) After changing the...
我也遇到了同样的问题, 修改 cocoapod package 的源码可以解决。去掉 armv7 和 armv7s的架构。 具体是 /Library/Ruby/Gems/2.6.0/gems/cocoapods-packager-1.5.0/lib/cocoapods-packager 下的 builder.rb 文件中的 ARCHS ```ruby def ios_build_options "ARCHS=\'$(ARCHS_STANDARD)\' OTHER_CFLAGS=\'-fembed-bitcode -Qunused-arguments\'" end ````