admin管理员组文章数量:1345895
I have a recovery application. The logic of the app is that if the user is in trouble, he will click a button. Then his location will be sent to the service. I can send the location while the app is in the foreground and background, but what should I do if the user has to close the app at that moment, i.e. terminate it?
Apps like Workmanager run every 15 minutes, but that doesn't work for me, I need to get the location every 30 seconds even if the app is terminated. Is there a solution for this? Or can I prevent the app from terminating until the process is finished?
I have a recovery application. The logic of the app is that if the user is in trouble, he will click a button. Then his location will be sent to the service. I can send the location while the app is in the foreground and background, but what should I do if the user has to close the app at that moment, i.e. terminate it?
Apps like Workmanager run every 15 minutes, but that doesn't work for me, I need to get the location every 30 seconds even if the app is terminated. Is there a solution for this? Or can I prevent the app from terminating until the process is finished?
Share Improve this question asked yesterday Furkan ErdoğanFurkan Erdoğan 113 bronze badges 1- Have you tried this package pub.dev/packages/flutter_background_geolocation? – Urvashi kharecha Commented yesterday
1 Answer
Reset to default 1You need a background collection service. Usually both Android and iOS gives you the option to run background operations with the following options:
Run background operations when APP is closed
Run background operations when the device restarts
Beware that these background operations will be terminated after a certain time by the OS. This is the default behavior, but there are some workarounds you can try.
There is a package that will help you with these features, its the flutter-background-geolocation, made by Transistorsoftware, I use this package on my applications and it works pretty fine!
https://github/transistorsoft/flutter_background_geolocation
Just beware: you can't easily access the keychain while the APP is in the background, so keep that in mind when you're performing these operations
本文标签: flutterHow do I get location in a terminated appStack Overflow
版权声明:本文标题:flutter - How do I get location in a terminated app? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743794301a2540144.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论