解决Flutter 打包 Module 'shared_preferences_foundation' not found

3 min read

解决Flutter 打包 Module 'shared_preferences_foundation' not found

post_install do |installer|
  installer.generated_projects.each do |project|
        project.targets.each do |target|
            target.build_configurations.each do |config|
                config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
             end
        end
 end
    installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)
  end
end