* To add Settings.bundle in Xcode. __Command N__ and in __Resource__, choose __Settings Bundle__ .
* Open `Root.plist` in source code, paste the code below to replace it,
```xml
PreferenceSpecifiers
Type
PSChildPaneSpecifier
File
Acknowledgements
Title
Acknowledgements
StringsTable
Root
```
* Right click `Settings.bundle`, choose __Open in Finder__.
* In Finder, right click `Settings.bundle`, choose __Show Package Contents__.
* __Command D__ to duplicate the `Root.plist`.
* Rename the duplicated one to `Acknowledgements.plist`.
* Back to Xcode, open `Acknowledgements.plist` in source code, and replace the content with code below,
```xml
StringsTable
Root
PreferenceSpecifiers
Type
PSGroupSpecifier
Title
Version X.X.X
FooterText
This app uses the following software and intellectual property under the following license agreements:
—
***ADD THIRD PARTY LICENSE and ATTRIBUTION TEXTS HERE***
```
Modify version number and add third party license and attribution texts.
To automate this process, see this: https://stackoverflow.com/questions/6428353/best-way-to-add-license-section-to-ios-settings-bundle/6453507#6453507