fix: Fix duplicate libhermes.so package (#741)

Co-authored-by: Joshua Smith <joshua.smith4@aggiemail.usu.edu>
This commit is contained in:
Joshua Smith 2022-01-14 01:54:33 -07:00 committed by GitHub
parent 202508b500
commit 00fc39891a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,7 +119,7 @@ android {
packagingOptions {
// Exclude all Libraries that are already present in the user's app (through React Native or by him installing REA)
excludes = ["**/libc++_shared.so", "**/libfbjni.so", "**/libjsi.so", "**/libreactnativejni.so", "**/libfolly_json.so", "**/libreanimated.so", "**/libjscexecutor.so"]
excludes = ["**/libc++_shared.so", "**/libfbjni.so", "**/libjsi.so", "**/libreactnativejni.so", "**/libfolly_json.so", "**/libreanimated.so", "**/libjscexecutor.so", "**/libhermes.so"]
// META-INF is duplicate by CameraX.
exclude "META-INF/**"
}