Skip to content

Commit a5e9616

Browse files
committed
feat: update xcode permission by command - test
1 parent 4f1d902 commit a5e9616

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Tools/ios_extension_setup.rb

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,14 @@
138138
end
139139

140140
# Extra Settings
141-
config.build_settings['INFOPLIST_PREPROCESS'] = 'YES'
141+
# 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'
142144
config.build_settings['GENERATE_INFOPLIST_FILE'] = 'NO'
143145
config.build_settings['ALWAYS_SEARCH_USER_PATHS'] = 'NO'
146+
147+
# Ensure Wrapper Extension is set
148+
config.build_settings['WRAPPER_EXTENSION'] = 'appex'
144149
end
145150

146151
# 5. Add Frameworks

0 commit comments

Comments
 (0)