Flutter iOS异常错误集合

ERROR ITMS-90206:"Invalid Bundle. The bundle at ‘xx.app/xx/xx.framework' contains disallwed file 'framework'

solution: Always Embed Swift Standard Libraries. YES ->NO



Found an unexpected Mach-O header code: 0x72613c21

solution:  extension 的 pods依赖 为 do Not embed 



Extension中报错:Undefined symbols for architecture arm64: "OBJC_CLASS$_FlutterError" ...

image.png

solution: 其实Extension是没有依赖插件的, 只依赖了Native的三方库, 应该是project的pods配置错了, 配成了app的Pods ,让extension对应自己的pods就好

修改后: debug => Pods_NotificationService.debug


image.png

你可能感兴趣的:(Flutter iOS异常错误集合)