Java 类com.facebook.react.modules.core.ExceptionsManagerModule 实例源码

项目:react-native-threads    文件:ThreadBaseReactPackage.java   
@Override
public List<NativeModule> createNativeModules(ReactApplicationContext catalystApplicationContext) {
    return Arrays.<NativeModule>asList(
            // Core list
            new AndroidInfoModule(),
            new ExceptionsManagerModule(reactInstanceManager.getDevSupportManager()),
            new AppStateModule(catalystApplicationContext),
            new Timing(catalystApplicationContext, reactInstanceManager.getDevSupportManager()),
            new UIManagerStubModule(catalystApplicationContext),
            new SourceCodeModule(catalystApplicationContext),
            new JSCHeapCapture(catalystApplicationContext),

            // Main list
            new AsyncStorageModule(catalystApplicationContext),
            new IntentModule(catalystApplicationContext),
            new LocationModule(catalystApplicationContext),
            new NetworkingModule(catalystApplicationContext),
            new NetInfoModule(catalystApplicationContext),
            new VibrationModule(catalystApplicationContext),
            new WebSocketModule(catalystApplicationContext),
            new ThreadSelfModule(catalystApplicationContext)
    );
}
项目:react-native-workers    文件:BaseReactPackage.java   
@Override
public List<NativeModule> createNativeModules(ReactApplicationContext catalystApplicationContext) {
    return Arrays.<NativeModule>asList(
            // Core list
            new AndroidInfoModule(),
            new ExceptionsManagerModule(reactInstanceManager.getDevSupportManager()),
            new Timing(catalystApplicationContext, reactInstanceManager.getDevSupportManager()),
            new UIManagerStubModule(catalystApplicationContext),
            new SourceCodeModule(reactInstanceManager.getSourceUrl()),
            new JSCHeapCapture(catalystApplicationContext),

            // Main list
            new AsyncStorageModule(catalystApplicationContext),
            new IntentModule(catalystApplicationContext),
            new LocationModule(catalystApplicationContext),
            new NetworkingModule(catalystApplicationContext),
            new NetInfoModule(catalystApplicationContext),
            new VibrationModule(catalystApplicationContext),
            new WebSocketModule(catalystApplicationContext),
            new WorkerSelfModule(catalystApplicationContext)
    );
}
项目:ReactNativeSignatureExample    文件:CoreModulesPackage.java   
@Override
public List<NativeModule> createNativeModules(
    ReactApplicationContext catalystApplicationContext) {
  Systrace.beginSection(Systrace.TRACE_TAG_REACT_JAVA_BRIDGE, "createUIManagerModule");
  UIManagerModule uiManagerModule;
  try {
    List<ViewManager> viewManagersList = mReactInstanceManager.createAllViewManagers(
        catalystApplicationContext);
    uiManagerModule = new UIManagerModule(
        catalystApplicationContext,
        viewManagersList,
        mUIImplementationProvider.createUIImplementation(
            catalystApplicationContext,
            viewManagersList));
  } finally {
    Systrace.endSection(Systrace.TRACE_TAG_REACT_JAVA_BRIDGE);
  }

  return Arrays.<NativeModule>asList(
      new AnimationsDebugModule(
          catalystApplicationContext,
          mReactInstanceManager.getDevSupportManager().getDevSettings()),
      new AndroidInfoModule(),
      new DeviceEventManagerModule(catalystApplicationContext, mHardwareBackBtnHandler),
      new ExceptionsManagerModule(mReactInstanceManager.getDevSupportManager()),
      new Timing(catalystApplicationContext),
      new SourceCodeModule(
          mReactInstanceManager.getSourceUrl(),
          mReactInstanceManager.getDevSupportManager().getSourceMapUrl()),
      uiManagerModule,
      new DebugComponentOwnershipModule(catalystApplicationContext));
}
项目:react-native-ibeacon-android    文件:CoreModulesPackage.java   
@Override
public List<NativeModule> createNativeModules(
    ReactApplicationContext catalystApplicationContext) {
  Systrace.beginSection(Systrace.TRACE_TAG_REACT_JAVA_BRIDGE, "createUIManagerModule");
  UIManagerModule uiManagerModule;
  try {
    List<ViewManager> viewManagersList = mReactInstanceManager.createAllViewManagers(
        catalystApplicationContext);
    uiManagerModule = new UIManagerModule(
        catalystApplicationContext,
        viewManagersList,
        mUIImplementationProvider.createUIImplementation(
            catalystApplicationContext,
            viewManagersList));
  } finally {
    Systrace.endSection(Systrace.TRACE_TAG_REACT_JAVA_BRIDGE);
  }

  return Arrays.<NativeModule>asList(
      new AnimationsDebugModule(
          catalystApplicationContext,
          mReactInstanceManager.getDevSupportManager().getDevSettings()),
      new AndroidInfoModule(),
      new DeviceEventManagerModule(catalystApplicationContext, mHardwareBackBtnHandler),
      new ExceptionsManagerModule(mReactInstanceManager.getDevSupportManager()),
      new Timing(catalystApplicationContext),
      new SourceCodeModule(
          mReactInstanceManager.getSourceUrl(),
          mReactInstanceManager.getDevSupportManager().getSourceMapUrl()),
      uiManagerModule,
      new DebugComponentOwnershipModule(catalystApplicationContext));
}
项目:react-native-box-loaders    文件:CoreModulesPackage.java   
@Override
public List<NativeModule> createNativeModules(
    ReactApplicationContext catalystApplicationContext) {
  Systrace.beginSection(Systrace.TRACE_TAG_REACT_JAVA_BRIDGE, "createUIManagerModule");
  UIManagerModule uiManagerModule;
  try {
    List<ViewManager> viewManagersList = mReactInstanceManager.createAllViewManagers(
        catalystApplicationContext);
    uiManagerModule = new UIManagerModule(
        catalystApplicationContext,
        viewManagersList,
        mUIImplementationProvider.createUIImplementation(
            catalystApplicationContext,
            viewManagersList));
  } finally {
    Systrace.endSection(Systrace.TRACE_TAG_REACT_JAVA_BRIDGE);
  }

  return Arrays.<NativeModule>asList(
      new AnimationsDebugModule(
          catalystApplicationContext,
          mReactInstanceManager.getDevSupportManager().getDevSettings()),
      new AndroidInfoModule(),
      new DeviceEventManagerModule(catalystApplicationContext, mHardwareBackBtnHandler),
      new ExceptionsManagerModule(mReactInstanceManager.getDevSupportManager()),
      new Timing(catalystApplicationContext),
      new SourceCodeModule(
          mReactInstanceManager.getSourceUrl(),
          mReactInstanceManager.getDevSupportManager().getSourceMapUrl()),
      uiManagerModule,
      new JSCHeapCapture(catalystApplicationContext),
      new DebugComponentOwnershipModule(catalystApplicationContext));
}