iOS
iOS required setup for Flutter app
- 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/'
Run
pod install
command in your_project_dir/ios
folderLast modified 1yr ago