Aly Lopes
Aly Lopes
I believe this issue could be related to https://github.com/react-native-maps/react-native-maps/pull/5061
I've done some digging and found out that this exception is raised here: https://github.com/react-native-maps/react-native-maps/blob/master/android/src/main/java/com/rnmaps/maps/MapUIBlock.java#L46 Unfortunately I have zero context about whats happening there :/
Something that seems related but I'm not sure: I've created a boolean ref to inform that map is ready. ```typescript const mapReady = useRef(false); function handleMapReady(){ mapReady.current = true; }...
> Something that seems related but I'm not sure: I've created a boolean ref to inform that map is ready. > > const mapReady = useRef(false); > > function handleMapReady(){...