-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate_ios.sh
More file actions
executable file
·95 lines (73 loc) · 2.85 KB
/
Copy pathupdate_ios.sh
File metadata and controls
executable file
·95 lines (73 loc) · 2.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/bin/bash
# Navigate to project directory
cd "$(dirname "$0")"
echo "Updating iOS deployment target to 14.0..."
# Update Podfile
cat > ios/Podfile << 'EOL'
platform :ios, '14.0'
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
project 'Runner', {
'Debug' => :debug,
'Profile' => :release,
'Release' => :release,
}
def flutter_root
generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
unless File.exist?(generated_xcode_build_settings_path)
raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
end
File.foreach(generated_xcode_build_settings_path) do |line|
matches = line.match(/FLUTTER_ROOT\=(.*)/)
return matches[1].strip if matches
end
raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
end
require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
flutter_ios_podfile_setup
target 'Runner' do
use_frameworks!
use_modular_headers!
flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
# Add the Google Maps pod here
pod 'GoogleMaps'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
# Set minimum iOS version to 14.0 for all targets
target.build_configurations.each do |config|
# Set deployment target for iOS
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0'
# Location permissions descriptions
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [
'$(inherited)',
'PERMISSION_LOCATION=1',
]
# This removes the need to have BITCODE support
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
EOL
# Update project.pbxproj
echo "Updating project.pbxproj..."
sed -i '' 's/IPHONEOS_DEPLOYMENT_TARGET = 12.0;/IPHONEOS_DEPLOYMENT_TARGET = 14.0;/g' ios/Runner.xcodeproj/project.pbxproj
sed -i '' 's/IPHONEOS_DEPLOYMENT_TARGET = 13.4;/IPHONEOS_DEPLOYMENT_TARGET = 14.0;/g' ios/Runner.xcodeproj/project.pbxproj
sed -i '' 's/IPHONEOS_DEPLOYMENT_TARGET = 16.6;/IPHONEOS_DEPLOYMENT_TARGET = 14.0;/g' ios/Runner.xcodeproj/project.pbxproj
# Also update AppFrameworkInfo.plist
echo "Updating AppFrameworkInfo.plist..."
sed -i '' 's/<string>12.0<\/string>/<string>14.0<\/string>/g' ios/Flutter/AppFrameworkInfo.plist
# Clean up
echo "Cleaning up..."
rm -rf ios/Pods ios/Podfile.lock
rm -rf build/ .dart_tool/
# Install pods
echo "Installing pods..."
cd ios
pod install --repo-update
cd ..
# Get packages
echo "Getting packages..."
flutter pub get
echo "Setup completed. Now try running: flutter run"