Add developement.md for common setup issues
This commit is contained in:
parent
df1f1a75ae
commit
315256fbea
1 changed files with 27 additions and 0 deletions
27
developement.md
Normal file
27
developement.md
Normal file
|
@ -0,0 +1,27 @@
|
|||
### iOS
|
||||
|
||||
```bash
|
||||
sudo gem install cocoapods
|
||||
cd ios && pod install && cd ..
|
||||
```
|
||||
#### iOS Simulator missing in flutter devices
|
||||
```bash
|
||||
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
|
||||
```bash
|
||||
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
|
||||
```bash
|
||||
- ./setup.sh
|
||||
```
|
||||
|
||||
- Install the pod again
|
||||
```bash
|
||||
cd ios && pod install && cd ..
|
||||
```
|
Loading…
Reference in a new issue