Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Latest commit

 

History

History
27 lines (23 loc) · 606 Bytes

developement.md

File metadata and controls

27 lines (23 loc) · 606 Bytes

iOS

sudo gem install cocoapods
cd ios && pod install && cd ..

iOS Simulator missing in flutter devices

sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch

Error (Xcode): Framework not found TensorFlowLiteC

  • Copy tflite package from pub.dev to pub.dartlang.org

     cp -r ~/.pub-cache/hosted/pub.dev/tflite_flutter-0.9.1 ~/.pub-cache/hosted/pub.dartlang.org/tflite_flutter-0.9.1
  • Run setup.sh

- ./setup.sh
  • Install the pod again
cd ios && pod install && cd ..