Updated AndroidStudio(3.5.3) not building Android Project, Caused by: org.gradle.api.resources.ResourceException:Unable to load Maven meta-data

后端 未结 2 1497
小蘑菇
小蘑菇 2020-12-12 02:13

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 rebui

相关标签:
2条回答
  • 2020-12-12 03:03

    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]1 enter 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'
        }
    
    0 讨论(0)
  • 2020-12-12 03:08

    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.

    0 讨论(0)
提交回复
热议问题