xcode编译flutter疑难杂症

2021-05-28 10:08:44

-----

1,Flutter ios 端 Module ‘..... ‘ not found(找不到插件)的问题解决

解决:

一:请先确认您的MACBOOK上面已经安装pods并在项目的ios目录下面进行pos install。

二:如果是在运行模拟器时出现 Module '… ’ not found。您可以事先打开您的模拟器,在Android studio中选择iphone模拟器先运行一次,再在xcode里面运行,可以正常跑通

三:如果xcode运行没有问题,且flutter build ios也没有问题,但是在xcode下面的product–Archive之后又出现了Module '… ’ not found,那么请先检查您用xcode打开的文件是哪一个。

应该在Xcode打开ios/Runner.xcworkspace/文件,而不是ios/Runner.xcodeproj文件

-----

2,flutter 插件在IOS端报错:'Flutter/Flutter.h not found'

https://stackoverflow.com/questions/65312965/flutter-fatal-error-flutter-flutter-h-file-not-found

I had this problem a week ago, I removed ios/Flutter folder from my directory and ran this commands and changed by deployment target to 11.0

解决:

-> flutter create .        // 这条是在当前目录创建flutter项目,已有项目 的情况下不要用,

-> flutter pub cache repair

-> cd ios

-> pod init          //如果 iOS 目录下有 podfile文件的话,需要删除。

-> pod install

-----

3,

warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 6.0, but the

range of supported deployment target versions is 8.0 to 13.2.99.

解决:

flutter clean

-----

4.问题:Flutter:模拟器运行错误-指定语言版本过高

The specified language version is too high. The highest supported language version is **

解决:

flutter clean

-----

5.Command PhaseScriptExecution failed

网上搜的都是 修改build system为Legacy,然后clean build,但是对我都不生效。

出这个问题的时候 flutter版本为 2.2.0,后面我下载了1.22.5版本使用,xcode是12.5版本。

然后尝试了卸载cocoapods,重新安装,命令如下

解决方案:

    1,卸载cocoapods

        $sudo gem uninstall cocoapods【Mac 10.10之前】

        $sudo gem uninstall -n/usr/local/bin cocoapods【Mac 10.11之后】

    2,重装cocoapods 1.4

        $sudo gem install cocoapods -v 1.4

    3,进入你项目中的ios目录设置pod

        $cd 你项目根目录/ios

    4,设置pod

        $pod setup

        $pod update

        $pod install

然后还是有问题,我又使用了问题 2 的解决办法,期间也重启过Mac,真烦。

-----

6.  context.inheritFromWidgetOfExactType  转换啥的错误,

解决:基本上是flutter版本不对应,新flutter版本有时候会把旧的dart类文件给移除,变量方法啥的都发生变化。

-----

我本次碰到的问题是,Archive的时候报Command PhaseScriptExecution failed with a nonzero exit code,定位到的文件是 ./flutter/cache/ffi-1.0.x/类型转换错误 ‘T’ 不能转换成 ‘XXX’。

成功Archive的时候是

1,调整了flutter版本为1.22.5,就是把系统环境变量对应的flutter版本调整,

然后又出现其它问题,又挨着解决

最后使用这个

2,-> flutter pub cache repair

-> cd ios

-> pod init          //如果 iOS 目录下有 podfile文件的话,需要删除。

-> pod install

3,使用AndroidStudio连接真机Run,Xcode build 成功,并且成功安装到真机上面。

4,回到Xcode,打开Runner.xcodewordspace文件,然后Product-Archive就好了,折腾了5个小时,真服了。

你可能感兴趣的:(xcode编译flutter疑难杂症)