应用研发平台EMAS上我使用react native接入移动分析 按照接入文档 最后报错,我按照这个报错搜了很久,也没有什么进展,怎么办啊?
Could not resolve all dependencies for configuration ':emas_emas-appmonitor-perf:debugRuntimeClasspath'.
Using insecure protocols with repositories, without explicit opt-in, is unsupported. Switch Maven repository 'maven9(http://nexus-ce.emas-poc.com/repository/maven-public/)' to redirect to a secure protocol (like HTTPS) or allow insecure protocols. See https://docs.gradle.org/7.5/dsl/org.gradle.api.artifacts.repositories.UrlArtifactRepository.html#org.gradle.api.artifacts.repositories.UrlArtifactRepository:allowInsecureProtocol for more details.
这个报错信息表示在构建过程中,Gradle 无法解析所有的依赖项。要解决这个问题,你可以尝试以下方法:
build.gradle
或 settings.gradle
),确保仓库地址是正确的。将仓库地址从 HTTP 更改为 HTTPS,例如:repositories {
maven { url 'https://nexus-ce.emas-poc.com/repository/maven-public/' }
}
./gradlew clean build --refresh-dependencies
按照这个:
https://help.aliyun.com/document_detail/435597.html?spm=a2c4g.435637.0.0.47d810d2ENQcm8
。此回答来自钉群应用研发平台EMAS开发者交流群。
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。