File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -119,11 +119,26 @@ dart pub get
119
119
120
120
platform :ios , ' 13.0' # Or above
121
121
122
- target ' YourApp' do
122
+ target ' Runner' do
123
+ use_frameworks!
124
+ use_modular_headers!
123
125
...
124
- pod ' ComplyCube'
125
126
...
126
127
end
128
+
129
+
130
+ post_install do |installer |
131
+ installer.pods_project.targets.each do |target |
132
+ flutter_additional_ios_build_settings(target)
133
+ target.build_configurations.each do |config |
134
+ config.build_settings[' ENABLE_BITCODE' ] = ' NO'
135
+ config.build_settings[' BUILD_LIBRARY_FOR_DISTRIBUTION' ] = ' YES'
136
+ config.build_settings[' EXCLUDED_ARCHS[sdk=iphonesimulator*]' ] = ' arm64'
137
+ config.build_settings[' IPHONEOS_DEPLOYMENT_TARGET' ] = ' 13.1'
138
+ end
139
+ end
140
+ end
141
+
127
142
```
128
143
129
144
#### Application permissions
You can’t perform that action at this time.
0 commit comments