zoukankan      html  css  js  c++  java
  • 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"
                ]
            },
        ]
    }
  • 相关阅读:
    csp-s模拟103
    csp-s模拟102
    csp-s模拟101
    csp-s模拟100
    csp-s模拟99
    csp-s模拟98
    csp-s模拟97
    csp-s模拟96
    csp-s模拟95
    csp-s模拟94
  • 原文地址:https://www.cnblogs.com/liuzhi20101016/p/14822655.html
Copyright © 2011-2022 走看看