-
Notifications
You must be signed in to change notification settings - Fork 24.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Integrating react-native into existing App #11485
Comments
If i inite the SoLoader on false i get exact the same error. In error i also have the part: In my opinion using the SoLoader doesn't make sense. |
Update to the Request. 12-16 09:37:52.041 E/AndroidRuntime: FATAL EXCEPTION: AsyncTask |
After long search and trying many different things i found that the error was found in grade by excluding in:
to solve the issue we used:
Now we have a new error: |
Hi,
we are trying to integrate react-native into our existing android application:
The SDK requirements of our build.gradle are:
minSdkVersion 16
targetSdkVersion 23
We use an Intent to call the initial React index.js:
Intent inte = new Intent(this, ReactNativeStarter.class);
startActivity(inte);
The rest of the code is from the react integrating tutorial.
When we try to call our react component we get the following error:
E/art: dlopen("/data/app/lib/arm/libreactnativejni.so", RTLD_LAZY) failed: dlopen failed: could not load library "libfbjni.so" needed by "libreactnativejni.so"; caused by cannot locate symbol "_ZSt16__get_once_mutexv" referenced by "libfbjni.so"...
E/AndroidRuntime: FATAL EXCEPTION: AsyncTask
Can you help?
The text was updated successfully, but these errors were encountered: