关于地理编码的依赖
实际上,我正在尝试运行GeoloActor应用程序。但这显示出一个错误,例如Pubget失败了 关于地理编码。由于软件包或其他任何内容的错误,可能是什么问题。 请任何人建议我在此处输入图像描述
Actualy I was trying out to run geoloactor app . But It shows an error like pubget is failed
on geocoding. What may be the problem like due to error in packages or anything else.
Please anyone suggest meenter image description here
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从提供的屏幕截图来看,您创建了一个称为
Geocoding
的颤音项目,还取决于现有的GeoCoding
软件包(请参阅PubSpec.yaml)。现在,这引入了命名冲突,Dart无法弄清楚您是否要将自己的项目导入到文件中,还是要导入
GeoCoding
软件包。解决方案将是:
地理编码
软件包的依赖性。Judging by the screenshot provided, you created a Flutter project called
geocoding
and also depend on the existinggeocoding
package (see pubspec.yaml).This now introduces a naming conflict and Dart cannot figure out if you want to import your own project into the file or if you want to import the
geocoding
package.The solution would be to either:
geocoding
package from your pubspec.yaml file.