-
Notifications
You must be signed in to change notification settings - Fork 92
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
2 files found with path 'lib/arm64-v8a/libc++_shared.so' from inputs...-react native #228
Comments
I can confirm this is an issue @rumax I had to add these lines inside my own |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Getting this same issue but only when trying to do a release build with detox. Runs fine in debug on emulator. Adding the I'd be fine if adding it to my own
|
And solution used in demo project is not working for you? Any chance that you can reproduce it in demo project at least and create a branch with the change? |
I think missing in config file for android.
please add following to your android/app/build.gradle**
android {
packagingOptions {
pickFirst 'lib/x86/libc++_shared.so'
pickFirst 'lib/x86_64/libjsc.so'
pickFirst 'lib/arm64-v8a/libjsc.so'
pickFirst 'lib/arm64-v8a/libc++_shared.so'
pickFirst 'lib/x86_64/libc++_shared.so'
pickFirst 'lib/armeabi-v7a/libc++_shared.so'
}
}
The text was updated successfully, but these errors were encountered: