美文网首页
flutter运行错误

flutter运行错误

作者: 咸鱼有梦想呀 | 来源:发表于2021-01-04 11:17 被阅读0次

    运行flutter报错:

    FAILURE: Build failed with an exception.
    
    * Where:
    Build file 'mydir/android/app/build.gradle' line: 16
    
    * What went wrong:
    A problem occurred evaluating project ':app'.
    versionCode not found. Define flutter.versionCode in the local.properties file.
    

    解决方法:

    在Android文件夹下的local.properties文件中添加:

    flutter.versionName=1.0.0
    flutter.versionCode=1
    flutter.buildMode=debug
    

    相关文章

      网友评论

          本文标题:flutter运行错误

          本文链接:https://www.haomeiwen.com/subject/bwnjactx.html