iOS
iOS required setup for Flutter app
iOS setup
Update Podfile in your_project_dir/ios folder
your_project_dir/ios folderchange minimum iOS deployment target to
10.0or lateradd custom podspec repo url
platform :ios, '10.0'
source 'https://bitbucket.org/authenteq/cocoapods-specs.git'
source 'https://cdn.cocoapods.org/'Apply changes in Podfile
Run pod install command in your_project_dir/ios folder
Last updated
Was this helpful?