iOS

iOS required setup for Flutter app

iOS setup

Update Podfile in your_project_dir/ios folder

  1. change minimum iOS deployment target to 10.0 or later

  2. add 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