skip to Main Content

W/native (29858): W0000 00:00:1693997505.755634 31475 abi_method_util.h:33] not supported: TfLiteInterpreterGetTensor: TF Lite in Google Play services has stable ABI version 1.11.0 which is less than the required version 1.13.0.

//this is error show in my flutter app

In my App, when i am opening QR scanner , when the scanning is done it will go to the result page but when i open the camera this error will show and also after the scanning process the result is not showing.

2

Answers


  1. The error message you’re encountering suggests that there is a version mismatch between TensorFlow Lite (TFLite) and Google Play services within your Flutter app. Specifically, it indicates that the TFLite version required by your app is 1.13.0 or higher, but the version provided by Google Play services is 1.11.0, which is not compatible.

    To resolve this issue and potentially fix the problem with your QR scanner not showing the result, you can try the following steps:

    Update TensorFlow Lite in your Flutter app:

    Update the TensorFlow Lite dependency in your Flutter app to a version that is compatible with the version provided by Google Play services (1.11.0). You can do this by specifying a compatible version of TFLite in your pubspec.yaml file:

    You should also check Camera permission in AndroidManifest.xml file

    Login or Signup to reply.
  2. You need to update your plugin for scanning qr-code

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search