I’m utilizing the beneath fastfile script for my auto signed app
lane :build_and_deploy do
api_key = app_store_connect_api_key(
key_id: "XXXX",
issuer_id: "XXX",
key_filepath: "/Customers/runner/AuthKey_XXXX.p8"
)
start
fitness center(
#scheme: scheme,
skip_package_ipa: true,
export_method: 'improvement',
xcargs: '-allowProvisioningUpdates -onlyUsePackageVersionsFromResolvedFile -parallelizeTargets CURRENT_PROJECT_VERSION=9840 MARKETING_VERSION=2.0.7 -authenticationKeyID XXXX -authenticationKeyIssuerID XXX -authenticationKeyPath /Customers/runner/AuthKey_XXXX.p8'
)
archive_path = lane_context[SharedValues::XCODEBUILD_ARCHIVE]
fitness center(
archive_path: archive_path,
skip_build_archive: true,
challenge: "helloSports.xcodeproj",
scheme: "helloSports",
clear: true,
xcargs: '-allowProvisioningUpdates -disableAutomaticPackageResolution -authenticationKeyID XXXX -authenticationKeyIssuerID XXX -authenticationKeyPath /Customers/runner/AuthKey_XXXX.p8',
skip_package_dependencies_resolution: true,
#export_method: "app-store",
export_method: "improvement",
)
I can perceive for “app-store” export methodology the discharge bundle ID can be utilized, however for “improvement” bundle ID should not the debug bundle ID be used? or in different phrases when will the debug bundle ID be used for exporting anyway??