美文网首页
Android Studio出现:Cause: unable t

Android Studio出现:Cause: unable t

作者: 隔壁老胡_68bd | 来源:发表于2020-04-02 16:13 被阅读0次

本人项目迁移之后遇见的一个坑,百度了很久试了很多方法,最终成功!
亲测有效,如果还是没有解决问题,那就祝你好运啦!
话不多说直接上步骤图文
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
image.png

3、打开File>Tools>Server Certificates,然后选择下好的证书文件,在重启项目即可。


image.png

相关文章

网友评论

      本文标题:Android Studio出现:Cause: unable t

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