Flutter运行iOS,pod警告问题

1、[!] Automatically assigning platform `iOS` with version `9.0` on target `Runner` because no platform was specified. Please specify a platform for this target in your Podfile. See `https://guides.cocoapods.org/syntax/podfile.html#platform`.

删除Podfile文件中第二行# platform :ios, '9.0'这个的 # 号

删除Podfile文件第二行前面的#号

2、[!] CocoaPods did not set the base configuration of your project because your project already has a custom config set. In order for CocoaPods integration to work at all, please either set the base configurations of the target `Runner` to `Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig` or include the `Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig` in your build configuration (`Flutter/Release.xcconfig`).

这里把Configuration都改为None,然后在执行pod install

把Configuration都改为None

你可能感兴趣的:(Flutter运行iOS,pod警告问题)