File tree Expand file tree Collapse file tree 6 files changed +14
-5
lines changed Expand file tree Collapse file tree 6 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,11 @@ post_install do |installer|
53
53
target . build_configurations . each do |config |
54
54
#config.build_settings['ENABLE_BITCODE'] = 'NO'
55
55
config . build_settings [ deployment_target_key ] = minimum_deployment_target
56
- #config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '11.0'
56
+ # https://stackoverflow.com/a/77142190
57
+ xcconfig_path = config . base_configuration_reference . real_path
58
+ xcconfig = File . read ( xcconfig_path )
59
+ xcconfig_mod = xcconfig . gsub ( /DT_TOOLCHAIN_DIR/ , "TOOLCHAIN_DIR" )
60
+ File . open ( xcconfig_path , "w" ) { |file | file << xcconfig_mod }
57
61
end
58
62
end
59
63
end
Original file line number Diff line number Diff line change @@ -145,6 +145,6 @@ SPEC CHECKSUMS:
145
145
PromisesObjC: 09985d6d70fbe7878040aa746d78236e6946d2ef
146
146
shared_preferences_foundation: e2dae3258e06f44cc55f49d42024fd8dd03c590c
147
147
148
- PODFILE CHECKSUM: dab9effacaa0f55bd7cb654850c5d77a50bb4ca1
148
+ PODFILE CHECKSUM: d917d8949c4799edb1ff5b2ec63705a1ec2d325f
149
149
150
150
COCOAPODS: 1.12.1
Original file line number Diff line number Diff line change @@ -54,6 +54,11 @@ post_install do |installer|
54
54
flutter_additional_macos_build_settings ( target )
55
55
target . build_configurations . each do |config |
56
56
config . build_settings [ deployment_target_key ] = minimum_deployment_target
57
+ # https://stackoverflow.com/a/77142190
58
+ xcconfig_path = config . base_configuration_reference . real_path
59
+ xcconfig = File . read ( xcconfig_path )
60
+ xcconfig_mod = xcconfig . gsub ( /DT_TOOLCHAIN_DIR/ , "TOOLCHAIN_DIR" )
61
+ File . open ( xcconfig_path , "w" ) { |file | file << xcconfig_mod }
57
62
end
58
63
end
59
64
end
Original file line number Diff line number Diff line change @@ -132,6 +132,6 @@ SPEC CHECKSUMS:
132
132
PromisesObjC: 09985d6d70fbe7878040aa746d78236e6946d2ef
133
133
shared_preferences_foundation: e2dae3258e06f44cc55f49d42024fd8dd03c590c
134
134
135
- PODFILE CHECKSUM: fb90be0dc01e76c332e93d62b285815e265b39e0
135
+ PODFILE CHECKSUM: 5ee51d19d6f83e130d7f1f4d8ecbfe714408529a
136
136
137
137
COCOAPODS: 1.12.1
Original file line number Diff line number Diff line change 263
263
isa = PBXProject;
264
264
attributes = {
265
265
LastSwiftUpdateCheck = 0920;
266
- LastUpgradeCheck = 1300 ;
266
+ LastUpgradeCheck = 1430 ;
267
267
ORGANIZATIONNAME = "";
268
268
TargetAttributes = {
269
269
331C80D4294CF70F00263BE5 = {
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<Scheme
3
- LastUpgradeVersion = " 1300 "
3
+ LastUpgradeVersion = " 1430 "
4
4
version = " 1.3" >
5
5
<BuildAction
6
6
parallelizeBuildables = " YES"
You can’t perform that action at this time.
0 commit comments