An open API service indexing awesome lists of open source software.

https://github.com/testableapple/fastlane-plugin-xcsize


https://github.com/testableapple/fastlane-plugin-xcsize

Last synced: 7 months ago
JSON representation

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
```