-
Notifications
You must be signed in to change notification settings - Fork 54
New exportArchive Feature #83
Conversation
…lacostej/gym into lacostej-feature/switch-to-exportArchive
Added new Xcode class Updated tests
"/usr/bin/xcrun xcodebuild -exportArchive", | ||
"-exportOptionsPlist '#{Gym::PackageCommandGeneratorXcode7.config_path}'", | ||
"-archivePath '#{Gym::BuildCommandGenerator.archive_path}'", | ||
"-exportPath '#{Gym::BuildCommandGenerator.build_path}'", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trailing whitespace detected.
FastlaneCore::ConfigItem.new(key: :skip_symbols, | ||
short_option: "-m", | ||
env_name: "GYM_SKIP_SYMBOLS", | ||
description: "Should the ipa file *not* include symbols?", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Any reason for using a negation in the flag name here? Seems confusing, especially when the actual archive flag (uploadSymbols
) doesn't have a negation. How about GYM_UPLOAD_SYMBOLS
with default false
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very good point, thank you so much @ldiqual 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The reason for that was, that you can't pass a false
value from the command line right now.
This looks really good, I'm excited to see this in master! I believe the new archiver will need to use this hack to support swift apps: http://stackoverflow.com/a/32535087/646960. Without it, I wasn't able to submit my binaries because of a validation error (the infamous
Let me know if you need some extra hands, I'll be happy to help. |
@@ -1,3 +1,7 @@ | |||
# encoding: utf-8 | |||
# from http://stackoverflow.com/a/9857493/445598 | |||
# because of |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trailing whitespace detected.
+1 thanks @KrauseFx |
Yeah, thanks @lacostej for preparing everything 👍 |
Follow up on #79