Skip to content

Commit dbbf019

Browse files
committed
Document Info.plist customisation
1 parent cb2cad9 commit dbbf019

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,22 @@ There are two ways to add custom app icons to a bundle project.
8787

8888
If 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

92108
If you want to see all available options just add `--help` to the end, (e.g. `swift bundler run --help`).

0 commit comments

Comments
 (0)