We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2da57c commit 38d5902Copy full SHA for 38d5902
1 file changed
fastlane/Fastfile
@@ -95,21 +95,6 @@ platform :ios do
95
targets: ["extension"]
96
)
97
98
- # Xcode 26 renamed 'app-store' to 'app-store-connect' in ExportOptions.plist.
99
- # Monkey-patch gym to emit the new value since fastlane hasn't been updated yet.
100
- require 'gym'
101
- ::Gym::PackageCommandGeneratorXcode7.class_eval do
102
- class << self
103
- alias_method :original_config_content, :config_content unless method_defined?(:original_config_content)
104
- def config_content
105
- content = original_config_content
106
- hash = Plist.parse_xml(content)
107
- hash['method'] = {} if hash['method'] == 'app-store'
108
- Plist::Emit.dump(hash)
109
- end
110
111
112
-
113
gym(
114
configuration: "Release",
115
project: "Code.xcodeproj",
0 commit comments