美文网首页零基础学鸿蒙编程
鸿蒙工程编译报错:check whether the 'app'

鸿蒙工程编译报错:check whether the 'app'

作者: 蓝不蓝编程 | 来源:发表于2021-10-13 20:00 被阅读0次

    问题

    鸿蒙工程编译报错:

    Please check 'entry' module config.json, check whether the 'app' sub-tag 'apiVersion' label is notEmpty
    

    解决方案

    升级gradle版本
    1、如果启动项目,有这个提示,可以直接升级。



    2、 如果没有,可以手动修改build.gradle文件

        dependencies {
            classpath 'com.huawei.ohos:hap:2.4.4.2'
            classpath 'com.huawei.ohos:decctest:1.0.0.7'
        }
    

    改成:

        dependencies {
            classpath 'com.huawei.ohos:hap:3.0.3.2'
            classpath 'com.huawei.ohos:decctest:1.2.6.0'
        }
    

    关于我

    厦门大学计算机专业|华为八年高级工程师
    十年软件开发经验,5年编程培训教学经验
    目前从事编程教学,软件开发指导,软件类毕业设计指导。
    所有编程资料及开源项目见https://cxyxy.blog.csdn.net/article/details/120405881

    相关文章

      网友评论

        本文标题:鸿蒙工程编译报错:check whether the 'app'

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