andynewman10

Results 20 comments of andynewman10

Amazing, the duration given to `Toast.makeText` matches what is expected. `Toast.makeText(context, mMessage, Toast.LENGTH_SHORT)` produces a short (1 second) toast and `Toast.makeText(context, mMessage, Toast.LENGTH_LONG)` produces a long (2-3 seconds) toast, as...

It would be nice if this problem with older Android versions could be corrected. In the meantime, it seems critical to me to specify in the `README.md` which Android version...

Based on my tests, `tflite_flutter` requires API level 26 or higher (Android 8.x or later). Previous OS versions trigger the exception Failed to load dynamic library 'libtensorflowlite_jni.so', since `strtod_l` is...

This is great - I believe you also need to change the minSdkVersion field in https://github.com/tensorflow/flutter-tflite/blob/main/android/build.gradle and specify ``` minSdkVersion 26 ``` This way, Flutter projects targeting lower OS versions...

Hi Paul, I investigated this a bit more. It turns out the Gradle dependency you're using is the *first* version of Tensorflow Lite for Android that exhibits the incompatibility with...

It seems 'client' is no longer a valid property, if I trust this documentation: https://developer.mozilla.org/en-US/docs/Web/API/FetchEvent/clientId The code raises no exception if I replace ``` event.client.postMessage('test'); ``` with ``` ServiceWorkerGlobalScope.self.clients[event.clientId!].then((client) {...

@andreififiita I also use Safari 17.5 on macOS Ventura and observe something similar. Did you find a solution for this? I tried downgrading firebase-js-sdk but it produces the same results....

> So it actually wasn't written by the TFLite team - it was written by a Summer of Code participant a few years ago :) You did advertise the Flutter...

The same model works with the XNNPack delegate when using native Android code. The GPU delegate doesn't work but the XNNPack delegate does work. This means there is something wrong...

The fact that the XNNPack delegate cannot be enabled has nothing to do with permissions.