Skip to content

Instantly share code, notes, and snippets.

@flopshot
Created September 11, 2019 15:24
Show Gist options
  • Save flopshot/2842d60aabc34ccd47467df7d73c7968 to your computer and use it in GitHub Desktop.
Save flopshot/2842d60aabc34ccd47467df7d73c7968 to your computer and use it in GitHub Desktop.
WhiteLabelConfigPackage.java
// WhiteLabelConfigPackage.java
package com.whitelabeldemo;
import com.facebook.react.ReactPackage;
import com.facebook.react.bridge.NativeModule;
import com.facebook.react.bridge.ReactApplicationContext;
import com.facebook.react.uimanager.ViewManager;
import javax.annotation.Nonnull;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class WhiteLabelConfigPackage implements ReactPackage {
@Nonnull
@Override
public List<NativeModule> createNativeModules(@Nonnull ReactApplicationContext reactContext) {
List<NativeModule> modules = new ArrayList<>();
modules.add(new WhiteLabelConfig(reactContext));
return modules;
}
@Nonnull
@Override
public List<ViewManager> createViewManagers(@Nonnull ReactApplicationContext reactContext) {
return Collections.emptyList();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment