GeoFencing 在 Flutter 中无法与 Geolocator 一起使用

问题描述 投票:0回答:1

我在调试构建 flutter 应用程序时遇到此错误。 因为 easy_geofencing 0.2.0 依赖于 geolocator ^7.7.1 并且没有版本的 easy_geofencing match >0.2.0 <0.3.0, easy_geofencing ^0.2.0 requires geolocator ^7.7.1.

我正在使用 geolocator: ^9.0.2easy_geofencing: ^0.2.0 来自 pub.dev 的包。

有人可以解决这个问题吗

请帮助我!

我尝试将 geolocator 包的版本降低到 7.7.1,但这没有帮助,因为该版本不包含我需要的功能。

如果有人遇到过类似的问题。你能帮帮我吗?

谢谢。

flutter geofencing flutter-packages geolocator
1个回答
0
投票

你可以做到

  geolocator: ^7.7.1
  easy_geofencing: ^0.2.0

或者让 flutter 决定

  geolocator: any
  easy_geofencing: any
© www.soinside.com 2019 - 2024. All rights reserved.