firebase – 在AndroidX迁移后Firestore损坏

firebase – 在AndroidX迁移后Firestore损坏,第1张

概述我刚刚迁移到 AndroidX并更新了我的Flutter依赖项. 我现在在使用Firestore时遇到错误. 例如: //try { await ref.collection(‘collection’).document(document).updateData({ 'Field’: field, });//} catch (e) {// debugPrint(e.toStri 我刚刚迁移到 AndroidX并更新了我的Flutter依赖项.

我现在在使用Firestore时遇到错误.

例如:

//try { await ref.collection(‘collection’).document(document).updateData({    'FIEld’: fIEld,});//} catch (e) {//  deBUGPrint(e.toString());//}

冻结应用程序并给出堆栈错误:

StandardMethodCodec.decodeEnvelope (message_codecs.dart:564) MethodChannel.invokeMethod (platform_channel.dart:292)_RootZone.runUnary (zone.dart:1379)_FutureListener.handleValue (future_impl.dart:126)_Future._propagatetoListeners.handleValueCallback (future_impl.dart:639)_Future._propagatetoListeners (future_impl.dart:668)_Future._completeWithValue (future_impl.dart:483)_Future._asyncComplete.<anonymous closure> (future_impl.dart:513)_microtaskLoop (schedule_microtask.dart:41)_startMicrotaskLoop (schedule_microtask.dart:50)

message_codecs break on exception(564)是:

throw PlatformException(code: errorCode,message: errorMessage,details: errorDetails);

当catch错误错误是:

PlatformException(Error 0,null,null)

我用的是:

cloud_firestore: ^0.9.0+2(firebase_auth: ^0.8.1+1)(Google_sign_in: ^4.0.1+1)(firebase_messaging: ^3.0.1)

在AndroID上没有同样的问题.

感谢帮助!

更新:这与https://github.com/flutter/flutter/issues/28103不同.删除等待不修复冻结/问题.

解决方法 我遇到了同样的问题.
这是v0.9.0 2的错误.

它通过使用以前版本的cloud_firestore解决了它.

cloud_firestore:    git:      url: git://github.com/Flutter/plugins.git      path: packages/cloud_firestore      ref: 51696552700af8692fd7d595237fc9c4e273de93

Flutter似乎认为1和2是相同的版本.
即使指定了0.9.0 1,它也没有改变.
所以我做了以下几点.

>删除.pub-cache /,>指定以上版本>扑动包得到> cloud_firestore:0.9.0 1>扑动包得到

总结

以上是内存溢出为你收集整理的firebase – 在AndroidX迁移后Firestore损坏全部内容,希望文章能够帮你解决firebase – 在AndroidX迁移后Firestore损坏所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1000587.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-21
下一篇 2022-05-21

发表评论

登录后才能评论

评论列表(0条)

保存