Netinfo eventListener not working with EAS build

Expo managed workflow with SDK 44 and netInfo v7.1.9 , netInfo eventListener never triggers in android for network changes. It shows the value after launch and there after eventListener never catch the net state change. It works in EAS iOS build but fails only on android. Classic expo build works for both platform.

Minimal example code

import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View } from 'react-native';
import NetInfo from '@react-native-community/netinfo';

import { useEffect, useState } from 'react';
import { ToastAndroid } from 'react-native';

export default function App() {
  const [state, setState] = useState({});
  useEffect(() => {
    const unsubscribe = NetInfo.addEventListener((state) => {
      setState(state);
      console.log('Connection type', state.type);
      console.log('Is connected?', state.isConnected);
      ToastAndroid.show(
        `App addEventListener: isConnected => ${state?.isConnected}`,
        1200
      );
    });
    return () => {
      unsubscribe();
    };
  }, []);
  return (
    <View style={styles.container}>
      <StatusBar style="auto" />
      <Text style={styles.state}>{`${JSON.stringify(state)}`}</Text>
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: '#fff',
    alignItems: 'center',
    justifyContent: 'center',
  },
  state: {
    fontSize: 18,
    fontWeight: 'bold',
  },
});

package.json

{
  "name": "test-netinfo",
  "version": "1.0.0",
  "main": "node_modules/expo/AppEntry.js",
  "scripts": {
    "start": "expo start",
    "android": "expo start --android",
    "ios": "expo start --ios",
    "web": "expo start --web",
    "eject": "expo eject"
  },
  "dependencies": {
    "@react-native-community/netinfo": "7.1.8",
    "expo": "~44.0.0",
    "expo-dev-client": "~0.8.4",
    "expo-status-bar": "~1.2.0",
    "react": "17.0.1",
    "react-dom": "17.0.1",
    "react-native": "0.64.3",
    "react-native-web": "0.17.1"
  },
  "devDependencies": {
    "@babel/core": "^7.12.9"
  },
  "private": true
}