本人项目迁移之后遇见的一个坑,百度了很久试了很多方法,最终成功!
亲测有效,如果还是没有解决问题,那就祝你好运啦!
话不多说直接上步骤图文
1、先改build.gradle文件
buildscript {
repositories {
google()
maven{url 'http://maven.aliyun.com/nexus/content/groups/public/'}
jcenter{
url 'http://jcenter.bintray.com'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
maven{url 'http://maven.aliyun.com/nexus/content/groups/public/'}
jcenter{
url 'http://jcenter.bintray.com'
}
}
}
2、使用谷歌、火狐浏览器打开https://bintray.com/bintray/jcenter网址,然后把证书下载下来
(具体步骤)
image.png
image.png
image.png
3、打开File>Tools>Server Certificates,然后选择下好的证书文件,在重启项目即可。
image.png
网友评论