How to upload dsyms files which developed with Flutter?

后端 未结 3 2040
有刺的猬
有刺的猬 2021-02-19 17:32

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

<

3条回答
  •  孤城傲影
    2021-02-19 17:55

    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.

提交回复
热议问题