Skip to content Skip to sidebar Skip to footer

Updated Androidstudio(3.5.3) Not Building Android Project, Caused By: Org.gradle.api.resources.resourceexception:unable To Load Maven Meta-data

Updated Android Studio not building Android Project, before it was building. I have checked with Proxy settings still it is getting same Below are the exceptions after rebuilding t

Solution 1:

As per my knowledge Your Android Studio Version is Updated to 3.5.3 as You mention on Title and You are Using 3.3.2 Build Gradle Version. i think Gradle Version is Creating an issue try to update you Gradle Version to 3.5.0, 3.5.1 or 3.5.2 [Gradle Version]1enter image description here

in Your Project build Gradle

dependencies {
        classpath 'com.android.tools.build:gradle:3.5.2'// NOTE: Do not place your application dependencies here; they belong// in the individual module build.gradle files
        classpath 'com.google.gms:google-services:3.0.0'
    }

Solution 2:

Please try to add certificates in Server Certificates (preferences -> Tools -> Server Certificates -> Click + button and add the .cer files over there.

To get the .cer, go to pom library URL and click on lock left side of the URL or developer settings --> security and download the certificate as .cer and upload in android studio.

Post a Comment for "Updated Androidstudio(3.5.3) Not Building Android Project, Caused By: Org.gradle.api.resources.resourceexception:unable To Load Maven Meta-data"