标签:builds tool 项目 har format upload nta fill 错误
由于公司的网络限制,或者外网下载网速过慢的情况。会导致google或者jcenter库的aar,jar库文件无法下载。
错误信息分析
Caused by: org.gradle.api.resources.ResourceException: Could not get resource ‘https://jcenter.bintray.com/com/android/support/support-media-compat/27.0.2/support-media-compat-27.0.2.aar‘.
这是资源下载失败的原因。
在项目project的build.gradle下配置成阿里的镜像服务器
maven{ url ‘http://maven.aliyun.com/nexus/content/groups/public/‘}
这里贴出build.gradle全部的代码
buildscript {
repositories {
maven{ url ‘http://maven.aliyun.com/nexus/content/groups/public/‘}
jcenter()
google()
}
dependencies {
classpath ‘com.android.tools.build:gradle:3.1.4‘
}
}
allprojects {
repositories {
maven{ url ‘http://maven.aliyun.com/nexus/content/groups/public/‘}
jcenter()
google()
1
}
}
配置后重新运行gradle,Android Studio会优先从阿里的镜像服务器拉取相应资源。
希望可以为你带来帮助。
标签:builds tool 项目 har format upload nta fill 错误
原文地址:https://www.cnblogs.com/sheseido/p/13951249.html