You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
328 B
11 lines
328 B
2 years ago
|
#!/bin/bash
|
||
|
brew update
|
||
|
brew install libimobiledevice
|
||
|
brew install ideviceinstaller
|
||
|
brew install ios-deploy
|
||
|
pod repo update
|
||
|
gem update cocoapods
|
||
|
git clone --single-branch --branch stable https://github.com/flutter/flutter.git $HOME/flutter
|
||
|
export PATH=$HOME/flutter/bin:$HOME/flutter/bin/cache/dart-sdk/bin:$PATH
|
||
|
flutter doctor
|