我已经在我的iOS项目中添加了快车道来创建.ipa
使用以下脚本,我可以创建 IPA。
desc "Generate .ipa"
lane :createipa do
gym(clean: true, export_method: ENV["EXPORT_METHOD"], output_directory: ENV["DIRECTORY"])
end
健身房还有其他 2 个属性,一个是与不同方案相关的方案,另一个是output_nameIPA 的名称。 现在,当我使用这个没有方案的脚本时,它要求我在运行时选择方案,我想将运行时的用户输入方案保存到一个变量并将其设置为output_name,有什么办法可以做到这一点吗?
既然您正在寻找用户输入,为什么不在运行fastlane
时将方案名称传递给脚本?这样:
bundle exec fastlane createipa scheme:MySchemeName
并将您的Fastfile
修改为:
desc "Generate .ipa"
lane :createipa do |options|
gym(
clean: true,
export_method: ENV["EXPORT_METHOD"],
output_directory: ENV["DIRECTORY"],
scheme: options[:scheme]
)
end
或者,您可以将其另存为ENV
条目:
XCODE_SCHEME=MySchemeName bundle exec fastlane
要直接回答问题,请使用此代码
desc 'Generate the ipa based on the scheme selected by the user'
lane :createipa do
glob_pattern = 'MyApp/MyApp.xcodeproj/**/*.xcscheme'
schemes = Dir[glob_pattern].map do |scheme_filepath|
File.basename(scheme_filepath)
end
prompt_text = 'Select a scheme:n'
schemes.each_index do |index|
prompt_text << " #{index}. #{schemes[index]}n"
end
prompt_text << '> '
print prompt_text
selected_scheme_index = gets.to_i
selected_scheme = schemes[selected_scheme_index]
puts "Selected Scheme: #{selected_scheme}"
ipa_output_name "#{selected_scheme}.ipa"
gym(
clean: true,
export_method: ENV['EXPORT_METHOD'],
output_directory: ENV['DIRECTORY'],
scheme: selected_scheme,
output_name: ipa_output_name
)
end