-
Notifications
You must be signed in to change notification settings - Fork 21
/
Podfile
62 lines (52 loc) · 2.29 KB
/
Podfile
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
# Uncomment this line to define a global platform for your project
platform :ios, '12.4'
# 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__))
end
post_install do |installer|
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
target.build_configurations.each do |config|
# Setup permission_handler plugin.
# for more information: https://github.com/BaseflowIT/flutter-permission-handler/blob/develop/permission_handler/ios/Classes/PermissionHandlerEnums.h
# e.g. when you don't need camera permission, just add 'PERMISSION_CAMERA=0'
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [
'$(inherited)',
'PERMISSION_CONTACTS=0',
'PERMISSION_EVENTS=0',
'PERMISSION_MEDIA_LIBRARY=0',
'PERMISSION_REMINDERS=0',
'PERMISSION_SPEECH_RECOGNIZER=0',
'PERMISSION_LOCATION=1',
'PERMISSION_NOTIFICATIONS=1'
]
config.build_settings["CODE_SIGNING_ALLOWED"] = 'NO'
config.build_settings["CODE_SIGNING_REQUIRED"] = 'NO'
config.build_settings["PROVISIONING_PROFILE"] = ''
config.build_settings["PROVISIONING_PROFILE_SPECIFIER"] = ''
config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET'
end
end
end