Project

app-tools

0.01
No commit activity in last 3 years
No release in over 3 years
Generate IPA files with correct Swift and symbol files for uploading to iTunesConnect. Resign IPA files with correct certificate and provisioning profiles for distribution. Upload IPA files to iTunesConnect.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.10
~> 10.0

Runtime

 Project Readme

Mobile App Tools

Installation

Add this line to your application's Gemfile:

gem 'app-tools'

And then execute:

$ bundle

Or install it yourself as:

$ gem install app-tools

The Tools

xcarchive2ipa

This tool creates IPA files that are valid for uploading to iTunesConnect. The xcodebuild tools is supposed to this functionality but currently the IPA files that it generates have no SwiftSupport directory and the symbols are not in the correct .symbols format that iTunesConnect requires.

This tool is a Ruby implementation of the relevant section of the CaveJohnson xcodeGUITricks command.

Just pass the tool the name of the .xcarchive file and it will generate a .ipa file next to it. It returns the full name of the output file so you easily can pass that to the next step in your build script.

> xcarchive2ipa MyApp.xcarchive
MyApp.ipa

Development

After checking out the repo, run bundle install to install dependencies. Then, run rake to run the tests.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/jlyonsmith/xcarchive2ipa.