https://github.com/testableapple/fastlane-plugin-xcsize
https://github.com/testableapple/fastlane-plugin-xcsize
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/testableapple/fastlane-plugin-xcsize
- Owner: testableapple
- License: mit
- Created: 2025-10-08T18:39:51.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-10-09T11:23:09.000Z (7 months ago)
- Last Synced: 2025-10-10T13:10:40.669Z (7 months ago)
- Language: Ruby
- Size: 9.77 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# XCSize
A fastlane plugin to profile iOS and macOS app and framework sizes from linkmap files, providing detailed breakdowns and insights.
## Getting Started
To get started with `xcsize`, add it to your project by running:
```bash
fastlane add_plugin xcsize
```
## Usage
```ruby
lane :test do
xcsize(linkmap: 'path/to/your/linkmap.txt')
xcsize_diff(old_linkmap: 'path/to/your/old_linkmap.txt', new_linkmap: 'path/to/your/new_linkmap.txt')
end
```