Main coves client
1# Uncomment this line to define a global platform for your project
2# platform :ios, '13.0'
3
4# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
5ENV['COCOAPODS_DISABLE_STATS'] = 'true'
6
7project 'Runner', {
8 'Debug' => :debug,
9 'Profile' => :release,
10 'Release' => :release,
11}
12
13def flutter_root
14 generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
15 unless File.exist?(generated_xcode_build_settings_path)
16 raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
17 end
18
19 File.foreach(generated_xcode_build_settings_path) do |line|
20 matches = line.match(/FLUTTER_ROOT\=(.*)/)
21 return matches[1].strip if matches
22 end
23 raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
24end
25
26require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
27
28flutter_ios_podfile_setup
29
30target 'Runner' do
31 use_frameworks!
32
33 flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
34 target 'RunnerTests' do
35 inherit! :search_paths
36 end
37end
38
39post_install do |installer|
40 installer.pods_project.targets.each do |target|
41 flutter_additional_ios_build_settings(target)
42 end
43end