I'm facing this issue when trying to compile ios version of my Flutter app (it's an Objective-C project) with flutter app build
I'm getting the following error:
The "Swift Language Version" (SWIFT_VERSION) build setting must be set to a supported value for targets which use Swift. This setting can be set in the build settings editor.
This has probably something to do with issue flutter/flutter#16049 , and I guess the solution would be to edit the file flutter_open_appstore.podspec and add the following:
s.swift_versions = ['4.0', '4.2', '5.0']
Please see flutter/flutter#16049 (comment) for the complete fix example.
For now, I've just found a workaround, you can find my experience: flutter/flutter#16049 (comment)
Thanks
I'm facing this issue when trying to compile ios version of my Flutter app (it's an Objective-C project) with
flutter app buildI'm getting the following error:
This has probably something to do with issue flutter/flutter#16049 , and I guess the solution would be to edit the file
flutter_open_appstore.podspecand add the following:Please see flutter/flutter#16049 (comment) for the complete fix example.
For now, I've just found a workaround, you can find my experience: flutter/flutter#16049 (comment)
Thanks