We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f1d902 commit a5e9616Copy full SHA for a5e9616
Tools/ios_extension_setup.rb
@@ -138,9 +138,14 @@
138
end
139
140
# Extra Settings
141
- config.build_settings['INFOPLIST_PREPROCESS'] = 'YES'
+ # INFOPLIST_PREPROCESS should be NO for standard Info.plist variable substitution to work correctly
142
+ # with $(PRODUCT_BUNDLE_IDENTIFIER). If YES, it expects C-style preprocessing.
143
+ config.build_settings['INFOPLIST_PREPROCESS'] = 'NO'
144
config.build_settings['GENERATE_INFOPLIST_FILE'] = 'NO'
145
config.build_settings['ALWAYS_SEARCH_USER_PATHS'] = 'NO'
146
+
147
+ # Ensure Wrapper Extension is set
148
+ config.build_settings['WRAPPER_EXTENSION'] = 'appex'
149
150
151
# 5. Add Frameworks
0 commit comments