import * as Location from "expo-location"; module.exports = async () => { console.log("Background location task has hopefully started"); let location = await Location.getLastKnownPositionAsync({}); console.log(location); };