Java 类com.facebook.react.bridge.DefaultNativeModuleCallExceptionHandler 实例源码

项目:RNLearn_Project1    文件:DevSupportManagerImpl.java   
public DevSupportManagerImpl(
    Context applicationContext,
    ReactInstanceDevCommandsHandler reactInstanceCommandsHandler,
    @Nullable String packagerPathForJSBundleName,
    boolean enableOnCreate,
    @Nullable RedBoxHandler redBoxHandler) {

  mReactInstanceCommandsHandler = reactInstanceCommandsHandler;
  mApplicationContext = applicationContext;
  mJSAppBundleName = packagerPathForJSBundleName;
  mDevSettings = new DevInternalSettings(applicationContext, this);
  mDevServerHelper = new DevServerHelper(mDevSettings);

  // Prepare shake gesture detector (will be started/stopped from #reload)
  mShakeDetector = new ShakeDetector(new ShakeDetector.ShakeListener() {
    @Override
    public void onShake() {
      showDevOptionsDialog();
    }
  });

  // Prepare reload APP broadcast receiver (will be registered/unregistered from #reload)
  mReloadAppBroadcastReceiver = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
      String action = intent.getAction();
      if (DevServerHelper.getReloadAppAction(context).equals(action)) {
        if (intent.getBooleanExtra(DevServerHelper.RELOAD_APP_EXTRA_JS_PROXY, false)) {
          mDevSettings.setRemoteJSDebugEnabled(true);
          mDevServerHelper.launchJSDevtools();
        } else {
          mDevSettings.setRemoteJSDebugEnabled(false);
        }
        handleReloadJS();
      }
    }
  };

  // We store JS bundle loaded from dev server in a single destination in app's data dir.
  // In case when someone schedule 2 subsequent reloads it may happen that JS thread will
  // start reading first reload output while the second reload starts writing to the same
  // file. As this should only be the case in dev mode we leave it as it is.
  // TODO(6418010): Fix readers-writers problem in debug reload from HTTP server
  mJSBundleTempFile = new File(applicationContext.getFilesDir(), JS_BUNDLE_FILE_NAME);

  mDefaultNativeModuleCallExceptionHandler = new DefaultNativeModuleCallExceptionHandler();

  setDevSupportEnabled(enableOnCreate);

  mRedBoxHandler = redBoxHandler;
  mDevLoadingViewController = new DevLoadingViewController(applicationContext);
}
项目:RNLearn_Project1    文件:DisabledDevSupportManager.java   
public DisabledDevSupportManager() {
  mDefaultNativeModuleCallExceptionHandler = new DefaultNativeModuleCallExceptionHandler();
}
项目:RNLearn_Project1    文件:DevSupportManagerImpl.java   
public DevSupportManagerImpl(
    Context applicationContext,
    ReactInstanceDevCommandsHandler reactInstanceCommandsHandler,
    @Nullable String packagerPathForJSBundleName,
    boolean enableOnCreate,
    @Nullable RedBoxHandler redBoxHandler) {

  mReactInstanceCommandsHandler = reactInstanceCommandsHandler;
  mApplicationContext = applicationContext;
  mJSAppBundleName = packagerPathForJSBundleName;
  mDevSettings = new DevInternalSettings(applicationContext, this);
  mDevServerHelper = new DevServerHelper(mDevSettings);

  // Prepare shake gesture detector (will be started/stopped from #reload)
  mShakeDetector = new ShakeDetector(new ShakeDetector.ShakeListener() {
    @Override
    public void onShake() {
      showDevOptionsDialog();
    }
  });

  // Prepare reload APP broadcast receiver (will be registered/unregistered from #reload)
  mReloadAppBroadcastReceiver = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
      String action = intent.getAction();
      if (DevServerHelper.getReloadAppAction(context).equals(action)) {
        if (intent.getBooleanExtra(DevServerHelper.RELOAD_APP_EXTRA_JS_PROXY, false)) {
          mDevSettings.setRemoteJSDebugEnabled(true);
          mDevServerHelper.launchJSDevtools();
        } else {
          mDevSettings.setRemoteJSDebugEnabled(false);
        }
        handleReloadJS();
      }
    }
  };

  // We store JS bundle loaded from dev server in a single destination in app's data dir.
  // In case when someone schedule 2 subsequent reloads it may happen that JS thread will
  // start reading first reload output while the second reload starts writing to the same
  // file. As this should only be the case in dev mode we leave it as it is.
  // TODO(6418010): Fix readers-writers problem in debug reload from HTTP server
  mJSBundleTempFile = new File(applicationContext.getFilesDir(), JS_BUNDLE_FILE_NAME);

  mDefaultNativeModuleCallExceptionHandler = new DefaultNativeModuleCallExceptionHandler();

  setDevSupportEnabled(enableOnCreate);

  mRedBoxHandler = redBoxHandler;
  mDevLoadingViewController = new DevLoadingViewController(applicationContext);
}
项目:RNLearn_Project1    文件:DisabledDevSupportManager.java   
public DisabledDevSupportManager() {
  mDefaultNativeModuleCallExceptionHandler = new DefaultNativeModuleCallExceptionHandler();
}
项目:ReactNativeSignatureExample    文件:DevSupportManagerImpl.java   
public DevSupportManagerImpl(
    Context applicationContext,
    ReactInstanceDevCommandsHandler reactInstanceCommandsHandler,
    @Nullable String packagerPathForJSBundleName,
    boolean enableOnCreate) {
  mReactInstanceCommandsHandler = reactInstanceCommandsHandler;
  mApplicationContext = applicationContext;
  mJSAppBundleName = packagerPathForJSBundleName;
  mDevSettings = new DevInternalSettings(applicationContext, this);
  mDevServerHelper = new DevServerHelper(mDevSettings);

  // Prepare shake gesture detector (will be started/stopped from #reload)
  mShakeDetector = new ShakeDetector(new ShakeDetector.ShakeListener() {
    @Override
    public void onShake() {
      showDevOptionsDialog();
    }
  });

  // Prepare reload APP broadcast receiver (will be registered/unregistered from #reload)
  mReloadAppBroadcastReceiver = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
      String action = intent.getAction();
      if (DevServerHelper.getReloadAppAction(context).equals(action)) {
        if (intent.getBooleanExtra(DevServerHelper.RELOAD_APP_EXTRA_JS_PROXY, false)) {
          mIsUsingJSProxy = true;
          mDevServerHelper.launchChromeDevtools();
        } else {
          mIsUsingJSProxy = false;
        }
        handleReloadJS();
      }
    }
  };

  // We store JS bundle loaded from dev server in a single destination in app's data dir.
  // In case when someone schedule 2 subsequent reloads it may happen that JS thread will
  // start reading first reload output while the second reload starts writing to the same
  // file. As this should only be the case in dev mode we leave it as it is.
  // TODO(6418010): Fix readers-writers problem in debug reload from HTTP server
  mJSBundleTempFile = new File(applicationContext.getFilesDir(), JS_BUNDLE_FILE_NAME);

  mDefaultNativeModuleCallExceptionHandler = new DefaultNativeModuleCallExceptionHandler();

  setDevSupportEnabled(enableOnCreate);
}
项目:ReactNativeSignatureExample    文件:DisabledDevSupportManager.java   
public DisabledDevSupportManager() {
  mDefaultNativeModuleCallExceptionHandler = new DefaultNativeModuleCallExceptionHandler();
}
项目:react-native-ibeacon-android    文件:DevSupportManagerImpl.java   
public DevSupportManagerImpl(
    Context applicationContext,
    ReactInstanceDevCommandsHandler reactInstanceCommandsHandler,
    @Nullable String packagerPathForJSBundleName,
    boolean enableOnCreate) {
  mReactInstanceCommandsHandler = reactInstanceCommandsHandler;
  mApplicationContext = applicationContext;
  mJSAppBundleName = packagerPathForJSBundleName;
  mDevSettings = new DevInternalSettings(applicationContext, this);
  mDevServerHelper = new DevServerHelper(mDevSettings);

  // Prepare shake gesture detector (will be started/stopped from #reload)
  mShakeDetector = new ShakeDetector(new ShakeDetector.ShakeListener() {
    @Override
    public void onShake() {
      showDevOptionsDialog();
    }
  });

  // Prepare reload APP broadcast receiver (will be registered/unregistered from #reload)
  mReloadAppBroadcastReceiver = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
      String action = intent.getAction();
      if (DevServerHelper.getReloadAppAction(context).equals(action)) {
        if (intent.getBooleanExtra(DevServerHelper.RELOAD_APP_EXTRA_JS_PROXY, false)) {
          mIsUsingJSProxy = true;
          mDevServerHelper.launchChromeDevtools();
        } else {
          mIsUsingJSProxy = false;
        }
        handleReloadJS();
      }
    }
  };

  // We store JS bundle loaded from dev server in a single destination in app's data dir.
  // In case when someone schedule 2 subsequent reloads it may happen that JS thread will
  // start reading first reload output while the second reload starts writing to the same
  // file. As this should only be the case in dev mode we leave it as it is.
  // TODO(6418010): Fix readers-writers problem in debug reload from HTTP server
  mJSBundleTempFile = new File(applicationContext.getFilesDir(), JS_BUNDLE_FILE_NAME);

  mDefaultNativeModuleCallExceptionHandler = new DefaultNativeModuleCallExceptionHandler();

  setDevSupportEnabled(enableOnCreate);
}
项目:react-native-ibeacon-android    文件:DisabledDevSupportManager.java   
public DisabledDevSupportManager() {
  mDefaultNativeModuleCallExceptionHandler = new DefaultNativeModuleCallExceptionHandler();
}
项目:react-native-box-loaders    文件:DevSupportManagerImpl.java   
public DevSupportManagerImpl(
    Context applicationContext,
    ReactInstanceDevCommandsHandler reactInstanceCommandsHandler,
    @Nullable String packagerPathForJSBundleName,
    boolean enableOnCreate) {
  mReactInstanceCommandsHandler = reactInstanceCommandsHandler;
  mApplicationContext = applicationContext;
  mJSAppBundleName = packagerPathForJSBundleName;
  mDevSettings = new DevInternalSettings(applicationContext, this);
  mDevServerHelper = new DevServerHelper(mDevSettings);

  // Prepare shake gesture detector (will be started/stopped from #reload)
  mShakeDetector = new ShakeDetector(new ShakeDetector.ShakeListener() {
    @Override
    public void onShake() {
      showDevOptionsDialog();
    }
  });

  // Prepare reload APP broadcast receiver (will be registered/unregistered from #reload)
  mReloadAppBroadcastReceiver = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
      String action = intent.getAction();
      if (DevServerHelper.getReloadAppAction(context).equals(action)) {
        if (intent.getBooleanExtra(DevServerHelper.RELOAD_APP_EXTRA_JS_PROXY, false)) {
          mIsUsingJSProxy = true;
          mDevServerHelper.launchJSDevtools();
        } else {
          mIsUsingJSProxy = false;
        }
        handleReloadJS();
      }
    }
  };

  // We store JS bundle loaded from dev server in a single destination in app's data dir.
  // In case when someone schedule 2 subsequent reloads it may happen that JS thread will
  // start reading first reload output while the second reload starts writing to the same
  // file. As this should only be the case in dev mode we leave it as it is.
  // TODO(6418010): Fix readers-writers problem in debug reload from HTTP server
  mJSBundleTempFile = new File(applicationContext.getFilesDir(), JS_BUNDLE_FILE_NAME);

  mDefaultNativeModuleCallExceptionHandler = new DefaultNativeModuleCallExceptionHandler();

  setDevSupportEnabled(enableOnCreate);
}
项目:react-native-box-loaders    文件:DisabledDevSupportManager.java   
public DisabledDevSupportManager() {
  mDefaultNativeModuleCallExceptionHandler = new DefaultNativeModuleCallExceptionHandler();
}
项目:Ironman    文件:DevSupportManagerImpl.java   
public DevSupportManagerImpl(
    Context applicationContext,
    ReactInstanceDevCommandsHandler reactInstanceCommandsHandler,
    @Nullable String packagerPathForJSBundleName,
    boolean enableOnCreate,
    @Nullable RedBoxHandler redBoxHandler) {

  mReactInstanceCommandsHandler = reactInstanceCommandsHandler;
  mApplicationContext = applicationContext;
  mJSAppBundleName = packagerPathForJSBundleName;
  mDevSettings = new DevInternalSettings(applicationContext, this);
  mDevServerHelper = new DevServerHelper(mDevSettings);

  // Prepare shake gesture detector (will be started/stopped from #reload)
  mShakeDetector = new ShakeDetector(new ShakeDetector.ShakeListener() {
    @Override
    public void onShake() {
      showDevOptionsDialog();
    }
  });

  // Prepare reload APP broadcast receiver (will be registered/unregistered from #reload)
  mReloadAppBroadcastReceiver = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
      String action = intent.getAction();
      if (DevServerHelper.getReloadAppAction(context).equals(action)) {
        if (intent.getBooleanExtra(DevServerHelper.RELOAD_APP_EXTRA_JS_PROXY, false)) {
          mDevSettings.setRemoteJSDebugEnabled(true);
          mDevServerHelper.launchJSDevtools();
        } else {
          mDevSettings.setRemoteJSDebugEnabled(false);
        }
        handleReloadJS();
      }
    }
  };

  // We store JS bundle loaded from dev server in a single destination in app's data dir.
  // In case when someone schedule 2 subsequent reloads it may happen that JS thread will
  // start reading first reload output while the second reload starts writing to the same
  // file. As this should only be the case in dev mode we leave it as it is.
  // TODO(6418010): Fix readers-writers problem in debug reload from HTTP server
  mJSBundleTempFile = new File(applicationContext.getFilesDir(), JS_BUNDLE_FILE_NAME);

  mDefaultNativeModuleCallExceptionHandler = new DefaultNativeModuleCallExceptionHandler();

  setDevSupportEnabled(enableOnCreate);

  mRedBoxHandler = redBoxHandler;
}
项目:Ironman    文件:DisabledDevSupportManager.java   
public DisabledDevSupportManager() {
  mDefaultNativeModuleCallExceptionHandler = new DefaultNativeModuleCallExceptionHandler();
}