diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-01-17 20:40:02 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-17 20:40:02 -0600 |
commit | 065d7ef629c7d991e520fc3dd94cd84b71014902 (patch) | |
tree | 89ed72702a5af85eb8508682edc9f2281d23c2e5 /android/app/src/main/jni/OnLoad.cpp | |
parent | 61682d5846523038d9a28f851d2bd7c16d27a4a9 (diff) | |
download | voidsky-065d7ef629c7d991e520fc3dd94cd84b71014902.tar.zst |
Improve lightbox... and update to React Native 0.71.0 (#49)
* Switch to a better lightbox implementation (close #42) * Upgrade to react-native 0.71.0 * Update (or remove low-value) tests
Diffstat (limited to 'android/app/src/main/jni/OnLoad.cpp')
-rw-r--r-- | android/app/src/main/jni/OnLoad.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/android/app/src/main/jni/OnLoad.cpp b/android/app/src/main/jni/OnLoad.cpp deleted file mode 100644 index c569b6e86..000000000 --- a/android/app/src/main/jni/OnLoad.cpp +++ /dev/null @@ -1,11 +0,0 @@ -#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(); - }); -} |