Android Studio出现:Cause: unable to find valid certification path to requested target解决办法

第一次使用,在同步gradle文件的时候,出现了这个错误,搜索了许多的办法,都nos。最后,使用如下的办法解决了:

1.将build.gradle文件里面的所有的repositores改为如下:

repositories {
        maven{url 'http://maven.aliyun.com/nexus/content/groups/public/'}
        google()
    }

2.在program structure 里面手动更新相应的jar包:

Android Studio出现:Cause: unable to find valid certification path to requested target解决办法_第1张图片

3.此时点击右上角的同步按钮(或者点击build.gradle)上面的try again ,稍等片刻,完事! 

你可能感兴趣的:(Android,解决问题)