Hi @Anonymous ,
Would you like to increase the time that the App runs in the background of phones?
If so, I'm afraid there is no way to achieve that need currently, since it would base on quite complex situations even refers to hardware. If you would like this feature be added into PowerApps, you could suggest an idea in Power Apps Idea Forum: Power Apps Ideas - Power Platform Community
The best practice of using online App is submitting in time once made any changes, I suppose. So, on your end, if you only need users record and submit locations they went to along with the corresponding time, as the workaround, you could:
1\ Add a Timer into the App, set to start while filling the form and end when click the submit button.
2\ Set the Duration you want, then set OnTimerEnd to:
ClearCollect(colTemp, "Everything in the App that filled by user"); SaveData( colTemp, "LocalData" )
3\ Use the LocalData to fill in the Form when app opened again.
So actually this is developing an offline-capable App, please refer to below doc:
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/offline-apps
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.