Skip to content

Instantly share code, notes, and snippets.

@irvin373
Created June 27, 2020 23:21
Show Gist options
  • Save irvin373/6212e3e2dcd1a9089f50d8b2da5faad9 to your computer and use it in GitHub Desktop.
Save irvin373/6212e3e2dcd1a9089f50d8b2da5faad9 to your computer and use it in GitHub Desktop.
package com.fullscreenvideoandroid;
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.Arrays;
import java.util.Collections;
import java.util.List;
public class VideoPlayerPackage implements ReactPackage {
@Override
public List<NativeModule> createNativeModules(ReactApplicationContext reactContext) {
return Arrays.<NativeModule>asList(new VideoPlayerModule(reactContext));
}
public List<Class<? extends JavaScriptModule>> createJSModules() {
return Collections.emptyList();
}
@Override
public List<ViewManager> createViewManagers(ReactApplicationContext reactContext) {
return Collections.emptyList();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment