Flutter TFLite Error: "metal_delegate.h" File Not Found Flutter TFLite Error: "metal_delegate.h" File Not Found flutter flutter

Flutter TFLite Error: "metal_delegate.h" File Not Found


Downgrading TensorFlowLiteC to 2.2.0 worked for me

  1. Downgrade your TensorFlowLiteC in /ios/Podfile.lock to 2.2.0
  2. run pod install in your /ios folder

See https://github.com/shaqian/flutter_tflite/issues/139#issuecomment-668252599


I solved mine by just downgrading from TensorFlowLiteC 2.5.0 to 2.2.0


In your Podfile add this to the end:

pod 'TensorFlowLiteC', '2.2.0'

Delete Podfile.lock

Delete Pods folder

Delete .symlinks folder

flutter run