HarmonyOS 鸿蒙Next IDE 报错 Could not resolve com.huawei.ohos:hap:3.1.5.0,复制链接到浏览器也是404

发布于 1周前 作者 htzhanglong 来自 鸿蒙OS

HarmonyOS 鸿蒙Next IDE 报错 Could not resolve com.huawei.ohos:hap:3.1.5.0,复制链接到浏览器也是404

FAILURE: Build failed with an exception.

* What went wrong:

A problem occurred configuring root project 'MyApplication'.

* Could not resolve all files for configuration ':classpath'.

* Could not resolve com.huawei.ohos:hap:3.1.5.0.
  Required by:
    project :
* Could not resolve com.huawei.ohos:hap:3.1.5.0.
  * Could not get resource 'https://repo.huaweicloud.com/repository/maven/com/huawei/ohos/hap/3.1.5.0/hap-3.1.5.0.pom'.
  * Could not GET 'https://repo.huaweicloud.com/repository/maven/com/huawei/ohos/hap/3.1.5.0/hap-3.1.5.0.pom'.
    * Read timed out

* Could not resolve com.huawei.ohos:decctest:1.2.7.20.
  Required by:
    project :
* Could not resolve com.huawei.ohos:decctest:1.2.7.20.
  * Could not get resource 'https://repo.huaweicloud.com/repository/maven/com/huawei/ohos/decctest/1.2.7.20/decctest-1.2.7.20.pom'.
  * Could not GET 'https://repo.huaweicloud.com/repository/maven/com/huawei/ohos/decctest/1.2.7.20/decctest-1.2.7.20.pom'.
    * Read timed out

* Try:

* Run with --info or --debug option to get more log output.
* Run with --scan to get full insights.

更多关于HarmonyOS 鸿蒙Next IDE 报错 Could not resolve com.huawei.ohos:hap:3.1.5.0,复制链接到浏览器也是404的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html

7 回复

最新解决方案,让我排查了三四天,最终参考 https://developer.huawei.com/consumer/cn/forum/topic/0201842153446590035 进行解决,JAVA_HOME环境变量被其他地方更改了导致的,一定要用jdk11、gradle7.3、node14~16进行解决

更多关于HarmonyOS 鸿蒙Next IDE 报错 Could not resolve com.huawei.ohos:hap:3.1.5.0,复制链接到浏览器也是404的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html


我是最新的ide,哪怕是新建的项目也会

问题解决了,Android Studio 跟 DevEco Studio使用了同一个.gradle目录,给DevEco Studio单独搞了一个.gradle目录就可以了。

新建工程也是这样的报错吗?我这边测试发现没问题呀!

针对帖子标题中提到的HarmonyOS(鸿蒙)Next IDE报错“Could not resolve com.huawei.ohos:hap:3.1.5.0”,以及复制链接到浏览器返回404的问题,这里给出直接的原因分析和可能的解决方案:

原因分析:

该错误通常表明IDE无法从配置的仓库中找到指定版本的com.huawei.ohos:hap依赖。可能的原因包括:

  1. 依赖版本不存在:指定的3.1.5.0版本可能并未在华为公开的Maven仓库中发布,或者该版本已被下架。
  2. 仓库配置错误:IDE中配置的Maven仓库地址可能不正确,或者该仓库未同步最新的依赖包。

解决方案:

  1. 检查依赖版本:访问华为开发者官网或Maven仓库,确认com.huawei.ohos:hap的可用版本,并尝试使用其他版本。
  2. 检查仓库配置:确保IDE中的Maven仓库配置正确,且能正常访问。
  3. 清理缓存并重新构建:有时候IDE的缓存可能导致依赖解析失败,尝试清理IDE缓存并重新构建项目。

如果问题依旧没法解决请联系官网客服, 官网地址是 https://www.itying.com/category-93-b0.html

回到顶部