96

I got the following Error in android Studio 2.2.3 when I sync gradle.

Error:Cause: unable to find valid certification path to requested target

How can I fix this issue

I am Adding my Gradle file also

apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
    applicationId "com.sample.myapplication"
    minSdkVersion 16
    targetSdkVersion 22
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
} } dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:palette-v7:23.4.0'
testCompile 'junit:junit:4.12'
// FireBase
compile 'com.google.firebase:firebase-messaging:9.0.0'
}//Add this line
apply plugin: 'com.google.gms.google-services'

and the project Level Gradle File

buildscript {
repositories {
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:2.2.3'
    classpath 'com.google.gms:google-services:3.0.0'
}
}
allprojects {
repositories {
    mavenCentral()
    jcenter{ url "http://jcenter.bintray.com/" }
    maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
roottraveller
  • 7,942
  • 7
  • 60
  • 65
Renjith Krishnan
  • 2,446
  • 5
  • 29
  • 53

25 Answers25

98

This problem might be due to some restricted internet connections... If you are installing build tools on some restricted network, the required certificates might not install... So try changing the network connection.... Worked for me.....

Rajat Anand
  • 998
  • 7
  • 7
74

I faced the same issue, but fixed it by adding

maven { url "http://jcenter.bintray.com"}

in the project Level Gradle File

buildscript {
repositories {
    jcenter()
    maven { url "http://jcenter.bintray.com"}
}
dependencies {
    classpath 'com.android.tools.build:gradle:2.2.3'
    classpath 'com.google.gms:google-services:3.0.0'
}
}
allprojects {
repositories {
    mavenCentral()
    jcenter{ url "http://jcenter.bintray.com/" }
    maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Ishaan Javali
  • 1,711
  • 3
  • 13
  • 23
Amaldev
  • 983
  • 8
  • 10
41

"Unable to find valid certification path to requested target"

If you are getting this message, you probably are behind a Proxy on your company, which probably is signing all request certificates with your company root CA certificate, this certificate is trusted only inside your company, so Android Studio cannot validate any certificate signed with your company certificate as valid, so, you need to tell Android Studio to trust your company certificate, you do that by adding your company certificate to Android Studio truststore.

(I'm doing this on macOS, but should be similar on Linux or Windows)

  • First, you need to save your company root CA certificate as a file: you can ask this certificate to your IT department, or download it yourself, here is how. Open your browser and open this url, for example, https://jcenter.bintray.com/ or https://search.maven.org/, click on the lock icon and then click on Show certificate

enter image description here

On the popup window, to save the root certificate as a file, make sure to select the top level of the certificates chain (the root cert) and drag the certificate image to a folder/directory on your disk drive. It should be saved as a file as, for example: my-root-ca-cert.cer, or my-root-ca-cert.pem

enter image description here

  • Second, let's add this certificate to the accepted Server Certificates of Android Studio:

On Android Studio open Preferences -> Tools -> Server Certificates, on the box Accepted certificates click the plus icon (+), search the certificate you saved previously and click Apply and OK

enter image description here

  • Third, you need to add the certificate to the Android Studio JDK truststore (Gradle use this JDK to build the project, so it's important):

In Android Studio open File -> Project Structure -> SDK Location -> JDK Location

enter image description here

Copy the path of JDK Location, and open the Terminal, and change your directory to that path, for example, execute:

cd /Applications/Android\ Studio.app/Contents/jre/jdk/Contents/Home/

(don't forget to scape the whitespace, "\ ")

Now, to import the certificate to the truststore, execute:

./bin/keytool -importcert -file /path/to/your/certificate/my-root-ca-cert.cer -keystore ./jre/lib/security/cacerts -storepass changeit -noprompt
  • Finally, restart Android Studio, or better click File -> Invalidate Caches / Restart

Done, you should be able to build your project now.

Carlos B. Flores
  • 2,611
  • 19
  • 10
  • Broken images didn't help any, but this answer DID fix my problem. I initially skipped the last step, which is what I truly needed. – IanCaz Jan 18 '21 at 19:43
  • 1
    in case you use jdk 11 this: ./jre/lib/security/cacerts should be: ./lib/security/cacerts – Vadim Eksler Apr 27 '22 at 06:25
  • 1
    that last step really made myday. Thanks, buddy – Yougansh Thakur Sep 20 '22 at 19:27
  • 1
    Good explanation and even better solution that works even in 2023. Thanks a lot! FYI, if anybody's using Android Studio Preview versions like me, the path to keystore is then: lib/security/cacerts – Damercy Jul 06 '23 at 10:18
13

I have faced this problem with Maven build earlier. It was occurring because I was working in a restricted office network. You need to import required certificate in your keystore.

Follow Steps in the answer of below question "unable to find valid certification path to requested target", but browser says it's OK

(use double quotes for fienames/pathnames)

Note: I am not able to find now exact source from where I solved problem, if I get it, I will update it

Community
  • 1
  • 1
Rahul Mahale
  • 139
  • 4
  • https://stackoverflow.com/questions/26180650/unable-to-find-valid-certification-path-to-requested-target-but-browser-says?answertab=votes#tab-top worked for me – Ali Ashraf Aug 10 '17 at 08:56
  • 1
    for Intellij Idea: https://intellij-support.jetbrains.com/hc/en-us/community/posts/115000094584-IDEA-Ultimate-2016-3-4-throwing-unable-to-find-valid-certification-path-to-requested-target-when-trying-to-refresh-gradle – Bechyňák Petr Feb 20 '18 at 14:23
  • I tried adding certificate also but that didn't helped. – Anukool srivastav Oct 19 '18 at 05:03
13

Import your company certificate at Tools->Android->SDK Manager->Tools->Server Certificates

8

I just encountered the similar problem and found a series of steps did help me. Of course few of them is to Change the network to a stronger,better one.or if you have only one network then try Reconnecting to the network and then simply INVALIDATE/RESTART your android studio. If it still shows the error you need to add the "maven" in repositories and point it out to the link as shown below: maven { url "http://jcenter.bintray.com"}

Finally,Go to *File *Settings *Build,Execution and deployment *Gradle *Android Studio --------And check Enable maven repository option.

After that simply clean and rebuild your APP and you will be good to go.

TheMRaju
  • 81
  • 1
  • 1
  • 1
    The setting `Android Studio` > `Enabled embeded marvin repository` seems to finally make things work. Thanks. – Ben Feb 23 '19 at 11:20
7

If you re in your office ,use your smartphone network. I think It will work.

ozanurkan
  • 399
  • 4
  • 13
6

If you are running behind a corporate proxy with SSL interception, you will need to follow these steps to trust your proxy certificate for HTTPS:

  • In Android Studio, Open File -> Settings
    • In Tools -> Server Certificates
      • Tick ‘Accept non-trusted certificates automatically’
      • Also click the ‘+’ and manually add the corporate proxy root certificate.
    • In Appearance and Behaviour -> System Settings -> HTTP Proxy
      • Set your corporate proxy URL and port details
  • Download KeyStore Explorer: http://keystore-explorer.org/downloads.html
  • In KeyStore Explorer (run as admin), open the Android Studio JRE certificate store: C:\Program Files\Android\Android Studio\jre\jre\lib\security\cacerts
    • The password should be ‘changeit’
    • Import the corporate proxy root certificate, and save.
  • In Android Studio, select File -> Invalidate Cache and Restart
DBPaul
  • 500
  • 5
  • 16
  • Thanks man, it solved my problem, this was exactly the problem I was experiencing, due to internal proxy restrictions. – rodolfocop May 31 '22 at 20:16
4

I had the same problem. I fixed it by removing/commenting proxy settings in gradle.properties. Check your gradle.properties, if you have some like this

systemProp.https.proxyPort=8080
systemProp.http.proxyHost=192.168.1.1
systemProp.https.proxyHost=192.168.1.1
systemProp.http.proxyPort=8080

comment it with #. Which will look like this

#systemProp.https.proxyPort=8080
#systemProp.http.proxyHost=192.168.1.1
#systemProp.https.proxyHost=192.168.1.1
#systemProp.http.proxyPort=8080
Vijay
  • 575
  • 4
  • 14
3

I missed this problem after update studio and gradle ,in the log file tips me some maven store has certificate problem.

I tried restart statudio as somebody suggestion but dose work; and somebody said we should set the jre environment ,but I doesn't know how to set it on Mac . So I tried restart Mac. and start studio I found this tips.enter image description here

so the problem is floating on the surface: solution: first step: restart computer ,there are too many problem after android studio update . second step:use the old gradle tool OR download the *pom and jar ,put in correct folder.

geisterfurz007
  • 5,292
  • 5
  • 33
  • 54
kan137g
  • 41
  • 3
  • I missed the same problem when my colleague update studio but I haven't update . Then I update studio ,but the problem occurs again . **I tried a lot of solution until this solved my problem. **. My computer is Mac. – kan137g Apr 07 '17 at 03:06
  • I missed the same problem again, all the solution description above doesn't work, then I closed Charles and restart studio , it's ok . – kan137g Apr 18 '17 at 07:15
1

You are using older version of libraries.

compile 'com.android.support:appcompat-v7:25.2.0'
compile 'com.android.support:design:25.2.0'
compile 'com.android.support:palette-v7:25.2.0'
compile 'com.google.firebase:firebase-messaging:10.2.0'
Sarvex
  • 763
  • 2
  • 7
  • 19
1

Like a noob!

I was getting a nightmare with this and forgot that i've recently installed a new AV (Kaspersky)

So another solution is: Disable your AV or add exclusions to your AV firewall or proxy

hope it helps to save some time.

1

For me this worked:

buildscript {
    repositories {
        maven { url "http://jcenter.bintray.com"}
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
    }
...
}

allprojects {
    repositories {
        mavenCentral()
        jcenter{ url "http://jcenter.bintray.com/" }
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
    }
}
D-rk
  • 5,513
  • 1
  • 37
  • 55
1
  1. If you are using kotlin and its showing this error please update your kotlin gradle plugin in project level build.gradle.

  2. The certificate expired case : Go to certificates in settings and check if any certificate is expired if any, delete that certificate and clean and sync it will work.

  3. Dependencies- unable to find case : In this case delete that dependency and sync the project then add the dependency again with some another version(downgraded version) and sync the project it will work.

These three cases i faced and wasted so much time, hope this will help someone and save someones day.

Thankyou - happy coding**:-)**

Minion
  • 964
  • 14
  • 16
1

Run bellow command in Android studio terminal after opening the same project. It worked for me.

On Windows:

gradlew cleanBuildCache

On Mac or Linux:

./gradlew cleanBuildCache
Avinash
  • 879
  • 2
  • 14
  • 26
0

Just try to build the same project through command prompt and if the download dependencies happen successfully, go to settings in you IntelliJ and map the gradle to point gradle in your system and build should happen fine.

0

The error is is because of your network restriction that does not allow to sync the project from "http://jcenter.bintray.com", No need play with the IDE (Android Studio).

Satyam Anand
  • 377
  • 1
  • 8
0

change dependencies from compile to Implementation in build.gradle file

0

Switching to the smartphone network & disabling the web security tool installed on my computer solved the problem.

rajkabbur
  • 187
  • 3
  • This is a local solution, as there are people working in companies where they cannot disable security tool installed on their computer. – Olórin Jan 21 '20 at 15:42
0

This issue is related to network connectivity if not solved adding maven { url "http://jcenter.bintray.com"} at project level.

Just try to change your network and sync the gradle, should fix this issue for sure.

Dev
  • 139
  • 2
  • 3
0

I got the same issue and I fixed it by changing my firewall setting or you can switch to another network

reasons behind it

when we are running our project run command its configure and check for exiting packages and make proceed to download the new or required package and the packages are stored on non-secure IP/hosting so your firewall will try to protect you and you will get these errors

0

Those who tried all the above answers and didn't help, or lazy to follow those steps, should try this quick-setting first.

  • Go to Android Studio -> Appearance & Behavior -> System Settings -> HTTP Proxy -> Select Auto-detect proxy settings

  • Go to Android Studio -> File -> Sync Project with Gradle File

enter image description here

Dharman
  • 30,962
  • 25
  • 85
  • 135
Pisal UTNGY
  • 147
  • 5
0

Part of this answer by @Sadegh is what fixed it for me

Go to Gradle Scripts > gradle.properties

Enter these 6 lines in the gradle.properties file:

systemProp.http.proxyHost=fodev.org
systemProp.http.proxyPort=8118
systemProp.http.nonProxyHosts=*.jitpack.io, *.maven.org
systemProp.https.proxyHost=fodev.org
systemProp.https.proxyPort=8118
systemProp.https.nonProxyHosts=*.jitpack.io, *.maven.org

enter image description here

To dig deeper into the issue, I went inside Android Studio (not your mac), at the bottom I opened Terminal and entered: ./gradlew build --warning-mode all

The exact problem was:

PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

Lance Samaria
  • 17,576
  • 18
  • 108
  • 256
-1

Most of the times when I face this issue. I remove replace https with http. It solves the issue.

Irshad
  • 1,016
  • 11
  • 30
  • 2
    Insecure connections aren't a good idea when you have options – Zoe Apr 02 '19 at 06:03
  • I agree, But the firewall setting is taken care by the IT department, which I have no control on. What would u suggest as an alternative? – Irshad Apr 02 '19 at 06:11
  • 3
    Contacting the IT department and telling them to create/use a firewall that doesn't block basic dev tools – Zoe Apr 02 '19 at 06:48
-2

Simple Invalidate/Restart fixed it for me. No other actions were taken

THIS USER NEEDS HELP
  • 3,136
  • 4
  • 30
  • 55