Flutter build failed 'UserAgent.h' file not found

后端 未结 4 803
名媛妹妹
名媛妹妹 2021-02-14 02:30

Project cannot build or debug with firebase_crashlytics. In my mac I\'ve updated to Flutter latest but the machine we are deploying the app have lower version (Flutter 1.9.1 hot

4条回答
  •  抹茶落季
    2021-02-14 03:01

    As mentioned in the firestore issue ticket, fixing the version of the firebase core to 0.4.4 instead of using 0.4.4+2 fixed the issue:

    dependency_overrides:
      firebase_core: 0.4.4
    

    Add this along with your existing firebase_auth dependency.

提交回复
热议问题