File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ def keep_source_code_for_prebuilt_frameworks!
24
24
DSL . dont_remove_source_code = true
25
25
end
26
26
27
- # Add custom xcodebuild option to the prebuiling aciton
27
+ # Add custom xcodebuild option to the prebuilding action
28
28
#
29
29
# You may use this for your special demands. For example: the default archs in dSYMs
30
30
# of prebuilt frameworks is 'arm64 armv7 x86_64', and no 'i386' for 32bit simulator.
@@ -33,7 +33,12 @@ def keep_source_code_for_prebuilt_frameworks!
33
33
#
34
34
# ` set_custom_xcodebuild_options_for_prebuilt_frameworks :simulator => "ARCHS=$(ARCHS_STANDARD)" `
35
35
#
36
- # @options String or Hash
36
+ # Another example to disable the generating of dSYM file:
37
+ #
38
+ # ` set_custom_xcodebuild_options_for_prebuilt_frameworks "DEBUG_INFORMATION_FORMAT=dwarf"`
39
+ #
40
+ #
41
+ # @param [String or Hash] options
37
42
#
38
43
# If is a String, it will apply for device and simulator. Use it just like in the commandline.
39
44
# If is a Hash, it should be like this: { :device => "XXXXX", :simulator => "XXXXX" }
You can’t perform that action at this time.
0 commit comments