Skip to content
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

fix(Android): patch potential issues with Android build since RN lib-merge in 0.76 #2602

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,13 @@ android {
"**/libc++_shared.so",
"**/libreact_render*.so",
"**/libreactnativejni.so",
"**/libreact_performance_timeline.so"
"**/libreact_performance_timeline.so",
// In 0.76 multiple react-native's libraries were merged and these are the main new artifacts we're using.
// Some of above lib* names could be removed after we remove support for 0.76.
// https://github.com/facebook/react-native/pull/43909
// https://github.com/facebook/react-native/pull/46059
"**/libfbjni.so",
"**/libreactnative.so"
]
}
sourceSets.main {
Expand Down
Loading