Skip to content

Commit 2fe5653

Browse files
committed
fix: android build.gradle exclude .so files
1 parent cdd81dc commit 2fe5653

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

package/android/build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -150,17 +150,17 @@ android {
150150
}
151151
}
152152

153-
// packagingOptions {
154-
// excludes = [
155-
// "META-INF",
156-
// "META-INF/**",
157-
// "**/libreactnative.so",
158-
// "**/libc++_shared.so",
159-
// "**/libfbjni.so",
160-
// "**/libjsi.so",
161-
// "**/libhermes.so",
162-
// ]
163-
// }
153+
packagingOptions {
154+
excludes = [
155+
"META-INF",
156+
"META-INF/**",
157+
"**/libreactnative.so",
158+
"**/libc++_shared.so",
159+
"**/libfbjni.so",
160+
"**/libjsi.so",
161+
"**/libhermes.so",
162+
]
163+
}
164164
}
165165

166166
repositories {

0 commit comments

Comments
 (0)