I am developing one Cross-platform app with flutter support. I Integrated firebase Crashlytics for crash reports. before I need to check report one error message comes
<
you can use Fastlane
to automate also this as part of release process.
here's an example that can go into your Fastfile
platform :ios do
desc "Upload symbols to Crashlytics"
lane :toCrashlytics do
upload_symbols_to_crashlytics
end
end
then you can run fastlane ios toCrashlytics
to run it.
see this link for more details.