2 天前一切正常。
\n现在,当我添加外部测试 Appstore 连接的构建时,它说无效的二进制文件。我正在使用 flutter 进行应用程序开发。
\nITMS-90433:无效的 Swift 支持 - 文件 libswiftAVFoundation.dylib 没有\xe2\x80\x99t 具有正确的代码签名。确保您\xe2\x80\x99 使用正确的签名,使用当前公共 (GM) 版本的 Xcode 重建应用程序,然后重新提交。Don\xe2\x80\x99t只需修改libswiftAVFoundation.dylib的代码签名即可。
\n我使用 flutter 1.22.4 和 Xcode 12.3 进行开发。
\n我没有使用Xcode测试版.当我尝试做一个Build或者Run代码时,通常需要1-2分钟的时间.当我在5-6左右工作时,我的系统卡住了更多.当我检查活动监测大量内存采取的是SourceKitService和lldb-rpc-server,这需要大约6 GB.终止这些服务系统后工作正常.我在一周左右就遇到了这个问题,并且在Swift 3中写了特定单个项目的问题.
知道问题可能是什么?
我正在开发相机应用程序.我正在为ios 10.x设备使用AVCapturePhotoOutput,为10.x设备使用AVCaptureStillImageOutput.
捕获照片时,我正在使用捕获设置下方
let settings = AVCapturePhotoSettings()
let previewPixelType = settings.availablePreviewPhotoPixelFormatTypes.first!
let previewFormat = [kCVPixelBufferPixelFormatTypeKey as String: previewPixelType,
kCVPixelBufferWidthKey as String: 1080,
kCVPixelBufferHeightKey as String: 1080,
]
settings.previewPhotoFormat = previewFormat
settings.isHighResolutionPhotoEnabled = true
settings.flashMode = .on
settings.isAutoStillImageStabilizationEnabled = true
self.captureOutputPhoto?.capturePhoto(with: settings, delegate: self)
Run Code Online (Sandbox Code Playgroud)
当我尝试使用上述设置拍摄照片时
captureOutput:didFinishProcessingPhotoSampleBuffer:previewPhotoSampleBuffer:resolvedSettings:bracketSettings:error
Run Code Online (Sandbox Code Playgroud)
上面的委托第一次抛出错误.我是AVCapturePhotoSettings的初学者.每次使用闪光模式成功拍摄照片后都会出现此问题.
我想在 API 调用时在 flutter 中显示全屏加载视图。但是当我在脚手架主体中添加加载小部件时,它会出现在 appbar 和底部导航器之后。
我花了很多时间来全屏显示加载视图。另外,我想在 API 调用时防止后退动作。