I just install android studio 3.1.3,because of certification issue i just downgrade the studio to 3.0.1 version, even though am getting the certification issue.,The issue comes when I try to creating a project am getting the certification issue like that "Gradle sync failed: unable to find valid certification path to requested target"
I didn't understand what cause for the issue.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}