Skip to content

Commit

Permalink
fix: Use useLegacyPackaging feature in Gradle (#2384)
Browse files Browse the repository at this point in the history
This is a replacement for the deprecated
android.bundle.enableUncompressedNativeLibs option that we had been
relying on before upgrading React Native and Gradle.
  • Loading branch information
Lucas Leblow authored Apr 2, 2024
1 parent 3d769cc commit 125ec4e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/mobile/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,10 @@ android {
pickFirst 'lib/x86_64/libfbjni.so'
pickFirst 'lib/armeabi-v7a/libfbjni.so'
pickFirst 'lib/arm64-v8a/libfbjni.so'

jniLibs {
useLegacyPackaging = true
}
}

namespace "com.quietmobile"
Expand Down

0 comments on commit 125ec4e

Please sign in to comment.