共计 771 个字符,预计需要花费 2 分钟才能阅读完成。
flutter 学习笔记
1、不依赖 Android Studio 装置 flutter(macos)
https://zhuanlan.zhihu.com/p/…
2、在 .bash_profile 里设置变量
参考
https://flutterchina.club/set…
export PUB_HOSTED_URL=https://pub.flutter-io.cn
export FLUTTER_STORAGE_BASE_URL=https://storage.flutter-io.cn
3、Flutter 命令每次都不失效,都须要重新配置环境变量的解决办法
https://blog.csdn.net/weixin_…
4、在 vscode 中增加
ADB Interface for VSCode
5、终端中找不到 adb 命令,在 .bash_profile 里设置变量
https://www.jianshu.com/p/196…
https://www.jianshu.com/p/80d…
export PATH=${PATH}:~/Library/Android/sdk/platform-tools
之后 F5 报错
6、批改 build.gradle, 正文掉 jcenter(),google()。应用阿里的镜像。起因是 jcenter google 库无法访问到导致的问题。
https://blog.csdn.net/chichen…
7、之后 依据 andriod-sdk 的门路去更新 sdkmanager 和更新 licenses
https://blog.csdn.net/weixin_…
./sdkmanager --update
./sdkmanager --licenses
8、解决 io.flutter 报错的问题
https://www.jianshu.com/p/946…
正文完