com.swmansion.gesturehandler.react.RNGestureHandlerPackage Java Examples

The following examples show how to use com.swmansion.gesturehandler.react.RNGestureHandlerPackage. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: MainApplication.java    From dingo with GNU General Public License v3.0 6 votes vote down vote up
@Override
protected List<ReactPackage> getPackages() {
  return Arrays.<ReactPackage>asList(
      new MainReactPackage(),
        new RNFirebasePackage(),
        new RNGestureHandlerPackage(),
        new ReanimatedPackage(),
        new SplashScreenReactPackage(),
        new ProxiedFetchReactPackage(),
        new PIPVideoPlayerPackage(),
        new AndroidYouTubePlayerPackage(),
        new BackgroundTimerPackage(),
      new TrackPlayer(),
      new SQLitePluginPackage(),
      new RNFirebaseCrashlyticsPackage()

  );
}
 
Example #2
Source File: MainApplication.java    From react-native-callkeep with ISC License 5 votes vote down vote up
@Override
protected List<ReactPackage> getPackages() {
  return Arrays.<ReactPackage>asList(
      new MainReactPackage(),
        new RNDeviceInfo(),
        new BackgroundTimerPackage(),
        new RNCallKeepPackage(),
      new ReanimatedPackage(),
      new RNGestureHandlerPackage(),
      new ModuleRegistryAdapter(mModuleRegistryProvider)
  );
}
 
Example #3
Source File: MainApplication.java    From react-native-tesseract-ocr with MIT License 5 votes vote down vote up
@Override
protected List<ReactPackage> getPackages() {
  return Arrays.<ReactPackage>asList(
      new MainReactPackage(),
      new ImagePickerPackage(),
      new RNGestureHandlerPackage(),
      new RNTesseractOcrPackage()
  );
}
 
Example #4
Source File: MainApplication.java    From SQLite-sync.com with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
@Override
protected List<ReactPackage> getPackages() {
  return Arrays.<ReactPackage>asList(
      new MainReactPackage(),
      new SQLitePluginPackage(),
        new RNGestureHandlerPackage()
  );
}