Skip to content

Commit

Permalink
feat: Attempt to fix compile error by allowing all paths, not just lib
Browse files Browse the repository at this point in the history
  • Loading branch information
astubenbord committed Jan 10, 2024
1 parent a651a4b commit 9bca1cb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ android {
compileSdkVersion 33

packagingOptions {
pickFirst 'lib/x86/libpdfium.so'
pickFirst 'lib/x86_64/libpdfium.so'
pickFirst 'lib/armeabi-v7a/libpdfium.so'
pickFirst 'lib/arm64-v8a/libpdfium.so'
pickFirst '**/x86/libpdfium.so'
pickFirst '**/x86_64/libpdfium.so'
pickFirst '**/armeabi-v7a/libpdfium.so'
pickFirst '**/arm64-v8a/libpdfium.so'
}

compileOptions {
Expand Down

0 comments on commit 9bca1cb

Please sign in to comment.