Skip to content

Instantly share code, notes, and snippets.

@1fabiopereira
Created August 7, 2017 18:48
Show Gist options
  • Save 1fabiopereira/614c7d42acbace58f4aa0a9c85077cf4 to your computer and use it in GitHub Desktop.
Save 1fabiopereira/614c7d42acbace58f4aa0a9c85077cf4 to your computer and use it in GitHub Desktop.
package com.inlocomediabridge.InlocoMedia;
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.Arrays;
import java.util.Collections;
import java.util.List;
public class InlocoMediaPackage implements ReactPackage {
@Override
public List<NativeModule> createNativeModules(ReactApplicationContext reactContext) {
List<NativeModule> modules = new ArrayList<>();
modules.add(new InlocoMediaModule(reactContext));
return modules;
}
@Override
public List<Class<? extends JavaScriptModule>> createJSModules() {
return Collections.emptyList();
}
@Override
public List<ViewManager> createViewManagers(ReactApplicationContext reactContext) {
return Arrays.<ViewManager>asList(
new InlocoMediaViewManager()
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment