mirror of
https://github.com/RoboSats/robosats.git
synced 2025-02-19 03:39:01 +00:00
12 lines
381 B
C++
12 lines
381 B
C++
![]() |
#include <fbjni/fbjni.h>
|
||
|
#include "MainApplicationTurboModuleManagerDelegate.h"
|
||
|
#include "MainComponentsRegistry.h"
|
||
|
|
||
|
JNIEXPORT jint JNICALL JNI_OnLoad(JavaVM *vm, void *) {
|
||
|
return facebook::jni::initialize(vm, [] {
|
||
|
facebook::react::MainApplicationTurboModuleManagerDelegate::
|
||
|
registerNatives();
|
||
|
facebook::react::MainComponentsRegistry::registerNatives();
|
||
|
});
|
||
|
}
|