Potential fix to expo-location crash

This commit is contained in:
Keannu Bernasol 2023-07-19 17:57:25 +08:00
parent 334978d2fd
commit 98bd8dcfb8

View file

@ -23,9 +23,9 @@ export default function Home() {
latitudeDelta: 0.000235, latitudeDelta: 0.000235,
longitudeDelta: 0.000067, longitudeDelta: 0.000067,
}; };
async function requestLocation() { async function requestLocation() {
let { status } = await Location.requestForegroundPermissionsAsync(); setTimeout(async () => {
const { status } = await Location.requestForegroundPermissionsAsync();
if (status !== "granted") { if (status !== "granted") {
setFeedback( setFeedback(
"Permission to access location was denied. Please allow permission" "Permission to access location was denied. Please allow permission"
@ -39,6 +39,7 @@ export default function Home() {
getDistance(location); getDistance(location);
} }
} }
}, 2000);
} }
useEffect(() => { useEffect(() => {
requestLocation(); requestLocation();