Skip to content

Commit 3e640c4

Browse files
committed
Update Troubleshooting section in README
Related to DEP-435
1 parent 44e5df9 commit 3e640c4

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,9 +286,15 @@ If you are using the `yoti-sdk-liveness-zoom` module together with the [App Bund
286286
```
287287
Native library failed to load: null
288288
```
289-
This is caused by a third party library we use. Disabling uncompressed native libraries inside your project's `gradle.properties` file solves the issue:
289+
This is caused by a third party library we use. To fix it, you can try adding the following to your `build.gradle` file:
290290
```
291-
android.bundle.enableUncompressedNativeLibs = false
291+
android {
292+
packagingOptions {
293+
jniLibs {
294+
useLegacyPackaging = true
295+
}
296+
}
297+
}
292298
```
293299

294300
## Support

0 commit comments

Comments
 (0)