You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We recommend that you distribute your app using [App Bundle](https://developer.android.com/platform/technology/app-bundle). This new Google Play feature allows you to use [Play Feature delivery](https://developer.android.com/guide/app-bundle/play-feature-delivery#customize_delivery) which uses advanced capabilities of app bundles, allowing certain features of your app to be delivered conditionally or downloaded on demand.
279
+
We recommend that you distribute your app using [App Bundle](https://developer.android.com/guide/app-bundle). This new Google Play feature allows you to use [Play Feature delivery](https://developer.android.com/guide/app-bundle/play-feature-delivery#customize_delivery) which uses advanced capabilities of app bundles, allowing certain features of your app to be delivered conditionally or downloaded on demand.
280
280
App Bundle also defer apk generation to Google Play, allowing it to generate minimal APK for each specific device that downloads your app, including only required processor architecture support.
281
281
282
282
Also, don't forget to [shrink, obfuscate and optimize](https://developer.android.com/studio/build/shrink-code) your app.
283
283
284
+
## Troubleshooting
285
+
If you are using the `yoti-sdk-liveness-zoom` module together with the [App Bundle](https://developer.android.com/guide/app-bundle) publishing format, you might encounter the following runtime exception when attempting to open the scan screen:
286
+
```
287
+
Native library failed to load: null
288
+
```
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:
290
+
```
291
+
android {
292
+
packagingOptions {
293
+
jniLibs {
294
+
useLegacyPackaging = true
295
+
}
296
+
}
297
+
}
298
+
```
299
+
284
300
## Support
285
301
If you have any other questions please do not hesitate to contact [email protected].
286
302
Once we have answered your question we may contact you again to discuss Yoti products and services. If you'd prefer us not to do this, please let us know when you e-mail.
0 commit comments