We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description
build_ios_app( clean: true, workspace: "ios/Runner.xcworkspace", export_method: "app-store", output_directory: "build/ios/ipa", output_name: "app.ipa", scheme: "Release" )
Something like build_ios_app fastlane plugin where we can have output_name param (or flag).
build_ios_app
output_name
Requirements
The text was updated successfully, but these errors were encountered:
From the fastlane docs, it looks like this maps to an xcodebuild argument named exportPath:
xcodebuild
exportPath
xcodebuild -exportArchive \ -exportFormat ipa \ -archivePath "build/MyApp.xcarchive" \ -exportPath "build/MyApp.ipa" \ -exportProvisioningProfile "ProvisioningProfileName"
Sorry, something went wrong.
No branches or pull requests
Description
Something like
build_ios_app
fastlane plugin where we can haveoutput_name
param (or flag).Requirements
The text was updated successfully, but these errors were encountered: