标签:物理 homebrew 64位 ios visual 运行 studio 配置文件 mob
操作系统: macOS (64-bit)
硬盘: 700 MB
工具: bash, mkdir, rm, git, curl, unzip, which
开发flutter应用程序,需要安装及下载对应的SDK
vim ~/.bash_profile
export PATH=$PATH:`pwd`/flutter/bin
source ~/.bash_profile
iOS开发flutter app,需要安装版本高于9.0的XCode
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
在开发阶段,可以使用模拟器来进行应用程序的实现及体验
open -a Simulator
开发完成应用以后,需要利用部署工具将其部署到物理机器上,利用homebrew来安装对应的工具
brew update
brew install --HEAD usbmuxd
brew link usbmuxd
brew install --HEAD libimobiledevice
brew install ideviceinstaller ios-deploy cocoapods
pod setup
我们采用vscode 作为IDE来开发flutter应用程序
标签:物理 homebrew 64位 ios visual 运行 studio 配置文件 mob
原文地址:https://www.cnblogs.com/SLchuck/p/10191574.html