Skip to content

Instantly share code, notes, and snippets.

@agustinfece
Created June 24, 2021 16:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save agustinfece/df045da6725449cba5cfc5558f9476ba to your computer and use it in GitHub Desktop.
Save agustinfece/df045da6725449cba5cfc5558f9476ba to your computer and use it in GitHub Desktop.
SharedStoragePackager.java
package com.widgetasap;
import com.facebook.react.ReactPackage;
import com.facebook.react.bridge.JavaScriptModule;
import com.facebook.react.bridge.NativeModule;
import com.facebook.react.bridge.ReactApplicationContext;
import com.facebook.react.uimanager.ViewManager;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class SharedStoragePackager implements ReactPackage {
@Override
public List<ViewManager> createViewManagers(ReactApplicationContext reactContext) {
return Collections.emptyList();
}
@Override
public List<NativeModule> createNativeModules(ReactApplicationContext reactContext) {
List<NativeModule> modules = new ArrayList<>();
modules.add(new SharedStorage(reactContext));
return modules;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment