File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -87,6 +87,22 @@ There are two ways to add custom app icons to a bundle project.
8787
8888If both are present, ` AppIcon.icns ` is used.
8989
90+ ### Info.plist customization
91+
92+ If you want to add extra key-value pairs to your apps Info.plist, you can add the following to ` Bundle.json ` :
93+
94+ ``` json
95+ {
96+ // ...
97+ "extraInfoPlistEntries" : {
98+ "YourKey" : " YourValue" ,
99+ "YourArrayKey" : [" YourFirstArrayEntry" ]
100+ }
101+ }
102+ ```
103+
104+ If you provide a value for a key that is already present in the default Info.plist, the default value will be overidden with the value you provide.
105+
90106### Help
91107
92108If you want to see all available options just add ` --help ` to the end, (e.g. ` swift bundler run --help ` ).
You can’t perform that action at this time.
0 commit comments