No Description

MainComponentsRegistry.h 901B

1234567891011121314151617181920212223242526272829303132
  1. #pragma once
  2. #include <ComponentFactory.h>
  3. #include <fbjni/fbjni.h>
  4. #include <react/renderer/componentregistry/ComponentDescriptorProviderRegistry.h>
  5. #include <react/renderer/componentregistry/ComponentDescriptorRegistry.h>
  6. namespace facebook {
  7. namespace react {
  8. class MainComponentsRegistry
  9. : public facebook::jni::HybridClass<MainComponentsRegistry> {
  10. public:
  11. // Adapt it to the package you used for your Java class.
  12. constexpr static auto kJavaDescriptor =
  13. "Lcom/test/newarchitecture/components/MainComponentsRegistry;";
  14. static void registerNatives();
  15. MainComponentsRegistry(ComponentFactory *delegate);
  16. private:
  17. static std::shared_ptr<ComponentDescriptorProviderRegistry const>
  18. sharedProviderRegistry();
  19. static jni::local_ref<jhybriddata> initHybrid(
  20. jni::alias_ref<jclass>,
  21. ComponentFactory *delegate);
  22. };
  23. } // namespace react
  24. } // namespace facebook