2024-03-02 05:55:33 +00:00
|
|
|
## Developer docs
|
|
|
|
|
2023-07-13 04:53:17 +00:00
|
|
|
### iOS
|
|
|
|
|
2024-03-02 05:55:33 +00:00
|
|
|
```sh
|
2023-07-13 04:53:17 +00:00
|
|
|
sudo gem install cocoapods
|
|
|
|
cd ios && pod install && cd ..
|
|
|
|
```
|
2024-03-02 05:55:33 +00:00
|
|
|
|
2023-07-13 04:53:17 +00:00
|
|
|
#### iOS Simulator missing in flutter devices
|
2024-03-02 05:55:33 +00:00
|
|
|
|
|
|
|
```sh
|
2023-07-13 04:53:17 +00:00
|
|
|
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
|
|
|
|
sudo xcodebuild -runFirstLaunch
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Error (Xcode): Framework not found TensorFlowLiteC
|
2024-03-02 05:55:33 +00:00
|
|
|
|
|
|
|
Copy tflite package from pub.dev to pub.dartlang.org
|
|
|
|
|
|
|
|
```sh
|
|
|
|
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
|
2023-07-13 04:53:17 +00:00
|
|
|
```bash
|
2024-03-02 05:55:33 +00:00
|
|
|
./setup.sh
|
2023-07-13 04:53:17 +00:00
|
|
|
```
|
|
|
|
|
2024-03-02 05:55:33 +00:00
|
|
|
Install the pod again
|
|
|
|
|
2023-07-13 04:53:17 +00:00
|
|
|
```bash
|
|
|
|
cd ios && pod install && cd ..
|
2024-03-02 05:55:33 +00:00
|
|
|
```
|