https://github.com/timonus/appscripts
A collection of useful build step scripts for iOS apps
https://github.com/timonus/appscripts
Last synced: about 1 month ago
JSON representation
A collection of useful build step scripts for iOS apps
- Host: GitHub
- URL: https://github.com/timonus/appscripts
- Owner: timonus
- License: bsd-3-clause
- Created: 2025-07-16T15:28:17.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-12-05T21:31:25.000Z (8 months ago)
- Last Synced: 2026-04-30T08:29:48.391Z (3 months ago)
- Language: Python
- Size: 7.81 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# appscripts
A collection of useful build step scripts for iOS apps
To reduce your app’s size these scripts can be invoked as a build step like the following.
```
if [ "${CONFIGURATION}" = "Release" ]; then
python3 Scripts/plist-minify.py
python3 Scripts/json-minify.py
fi
```
This will
- Re-encode plists to binary where it saves space
- Strip whitespace from JSON files
More details [here](https://objectionable-c.com/posts/shrink-static-files/)