File not found: /Volumes/Macintosh HD - Data/REACT NATIVE PROJECTS/gochiso-new-version/node_modules/@react-native-community/geolocation/android/build/.transforms/43e608de3335d372c704d1d4511c3322/classes code example
Example: Detect the city on application launch via geolocation react native
navigator.geolocation.getCurrentPosition((geo) => console.log(geo))
// or using lib
import Geolocation from '@react-native-community/geolocation';
Geolocation.getCurrentPosition(info => console.log(info));