gpt4 book ai didi

android - GetCurrentLocation 在调试中工作,但在 Android 的发行版 apk 中不起作用

转载 作者:行者123 更新时间:2023-12-03 02:55:00 24 4
gpt4 key购买 nike

我有 geolocator 包的问题,​​当我在 Debug模式下运行我的应用程序时一切正常,但是当我构建应用程序并使用 Release模式时,它卡在我的加载屏幕中,其中包含来自 geolocator 包的 getcurrentlocation。

Future<void> getCurrentLocation() async {
try {
Geolocator geolocator = Geolocator()..forceAndroidLocationManager = true;
Position position = await geolocator.getCurrentPosition(
desiredAccuracy: LocationAccuracy.low,
);
latitude = position.latitude;
longitude = position.longitude;
} catch (e) {
print(e);
}
}
并添加到android list 访问。

最佳答案

我在使用 Geolocator 包时遇到了同样的问题,我的许多用户无法访问他们的位置,也没有获得许可。
解决方案是使用 location package反而。
我无法确定这对我有用的确切原因,但我有一个正在生产的应用程序,将我的包更改为这对我有帮助。

关于android - GetCurrentLocation 在调试中工作,但在 Android 的发行版 apk 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62841424/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com