Open
Description
Expected behavior
Release dashboard in Bugsnag should show release metadata (sourcecode links, git hash, releaser name) on both platforms when using send_build_to_bugsnag
.
Observed behavior
Dashboard only shows this information when using the bugsnag gradle plugin for Android, but not when using this tool in fastlane.
Steps to reproduce
Make build, send build info to bugsnag using the send_build_to_bugsnag
action.
Fastfile:
platform :ios do
desc 'Distribute a new beta build'
lane :beta do
build_number = sh('../../scripts/version/versions.sh')
increment_build_number(
build_number: build_number
)
build_ios_app
upload_to_testflight
upload_symbols_to_bugsnag
send_build_to_bugsnag(
config_file: './<project name>/Info.plist'
)
end
end
Note the manual config_file
option that I have to set in order to avoid issue #31.
Version
1.4.1