Skip to content

Instantly share code, notes, and snippets.

@chandraf22
Created September 18, 2018 07:55
Show Gist options
  • Save chandraf22/340f243206153c318a3da493914b95be to your computer and use it in GitHub Desktop.
Save chandraf22/340f243206153c318a3da493914b95be to your computer and use it in GitHub Desktop.
import com.facebook.react.ReactPackage;
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 AwsIoTPackage implements ReactPackage {
@Override
public List<NativeModule> createNativeModules(ReactApplicationContext reactContext) {
List<NativeModule> modules = new ArrayList<>();
modules.add(new AwsIoTModule(reactContext));
return modules;
}
@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