Releases: fastlane-old/gym
0.7.0 New options
- You can now specify the
export_method
with values likeapp-store
(default),ad-hoc
orenterprise
to letxcodebuild
know what kind ofipa
we build and how to sign it - Added support for
codesigning_identity
option when using Xcode 7 - Some other small improvements
Example Fastfile
configuration:
gym(export_method: 'enterprise')
0.6.2 Improved ipa file detection
Improved the detection of the resulting ipa file for Xcode 7 generated archives
0.6.1 Renamed parameters
Renamed new parameters from upload_bitcode
to include_bitcode
0.6.0 Upgrade to the new Xcode 7 API
Xcode 7 provides a new API to export and sign your application 🚀
- No more manual fixes for Swift and WatchKit Support
- Support for dSYM files in your binary
- Bitcode support
Important: ipa
files generated with Xcode 7 containing Swift code will end up being much larger than previously. This is due to the bundled Swift support. While you'll have to upload the large ipa
file, the resulting app for the user will still be smaller.
And of course, gym
still also supports the "old way" of building and signing your app. You can specify the Xcode version to use using xcode-select
, gym
will automatically detect the currently used Xcode.
New options:
include_symbols
: Should the ipa file include symbols?include_bitcode
: Should the ipa include bitcode?
0.5.0 New Option
- Added new
archive_path
option to store the archive in a different folder - Improved swift packaging
0.4.6 Improvement
Fixed escaping of the path for patching the package script
0.4.5 Improvements
- Hide stack trace by default
- Fixed an issue with the swift patch when app contained a
'
0.4.4 Improvements
- Improved instructions on how to share schemes
- Improved handling of projects with no shared schemes
- Fixed build error when app name contains a
'
- Improved
--verbose
mode
0.4.3 Improved platform detection
- Improved detection of the platform
- Added more debug information
- Fixed an issue when schemes are not shared
- Improved text output
0.4.2 Improved platform detection
Improved the detection of the platform on some project setups