Код: Выделить всё
Swift Compiler Error (Xcode): Compiling for iOS 12.0, but module 'workmanager' has a minimum deployment target of iOS 14.0.
В подфайле я уже настроил:
Код: Выделить всё
platform :ios, '14.0'
Код: Выделить всё
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
end
end
end
Код: Выделить всё
MinimumOSVersion
14.0
Теперь у меня заканчиваются идеи...
У кого-нибудь есть совет?
Подробнее здесь: https://stackoverflow.com/questions/790 ... platform-v