# react-native-mic-util

``` android
import {
  NativeModules,
  DeviceEventEmitter
} from 'react-native';

var bGNativeModuleExample = NativeModules.BGNativeModuleExample;

bGNativeModuleExample.getNativeClass(name => {
  console.log("nativeClass: ", name);
});
console.log(bGNativeModuleExample.TestEventName)

//接收事件 now is only in ios
DeviceEventEmitter.addListener(bGNativeModuleExample.TestEventName, info => {
  console.log(info);
});

```
