Flutter——首次在安卓机上运行
Posted 在一起的浅蓝色
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flutter——首次在安卓机上运行相关的知识,希望对你有一定的参考价值。
第一次在ASCode上用安卓机测试Flutter项目,直接运行,会报很多错误,需要在项目中新增配置
环境:安卓机
开发工具:ASCode
.vscode -> launch.json
{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "blabla-app", "request": "launch", "type": "dart" }, { "name": "vivo debug", "request": "launch", "type": "dart", "flutterMode": "debug", // NOTE: debug 时 // android ? 使用下面的 args // ios? 注释掉下面的 args "args": [ "--flavor", "none" ] }, ] }
以上是关于Flutter——首次在安卓机上运行的主要内容,如果未能解决你的问题,请参考以下文章
“服务协议”错误阻止在真实设备上测试 Flutter 应用程序
您的 Android App Bundle 使用错误的密钥进行签名。 (首次在 google play store 上传应用时)