add a prop key to MapView like this
<MapView
key={Platform.OS === "android" ? ${Key}
: "map"}
...
/>
and define a state:
const [key, setKey] = React.useState(0);
and add useEffect:
useEffect(() => {
if (Platform.OS === "android") {
setKey((prev) => prev + 1);
setIsMapReady(false);
}
}, [storeMarkers]);