com.rnfs.RNFSPackage Java Examples

The following examples show how to use com.rnfs.RNFSPackage. 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 react-native-3d-model-view with MIT License 5 votes vote down vote up
@Override
protected List<ReactPackage> getPackages() {
  return Arrays.<ReactPackage>asList(
      new MainReactPackage(),
        new RNZipArchivePackage(),
        new RNFSPackage(),
        new RNFetchBlobPackage(),
        new RN3DPackage()
  );
}
 
Example #2
Source File: MainApplication.java    From react-native-doc-viewer with MIT License 5 votes vote down vote up
@Override
protected List<ReactPackage> getPackages() {
  return Arrays.<ReactPackage>asList(
      new MainReactPackage(),
        new RNReactNativeDocViewerPackage(),
        new RNFSPackage()
  );
}
 
Example #3
Source File: MainApplication.java    From aurora-imui with MIT License 5 votes vote down vote up
@Override
protected List<ReactPackage> getPackages() {
    return Arrays.<ReactPackage>asList(
            new MainReactPackage(),
            new ReactIMUIPackage(),
            new RNFSPackage()
    );
}