1
0
Code Issues Pull Requests Packages Projects Releases Wiki Activity GitHub Gitee

chore: update example & upgrade react-native to v0.69.3.

This commit is contained in:
jaywcjlove
2022-08-05 17:34:15 +08:00
parent e2233796f6
commit 8331e3bf75
41 changed files with 4023 additions and 3723 deletions

View File

@@ -0,0 +1,11 @@
#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();
});
}