failed linking references after update of gradle Android Studio

后端 未结 7 2141
挽巷
挽巷 2020-12-25 10:53

I got this error after update my Gradle (I have also added maven{jitpack.io} and geofirestore dependencies at the same of updating Gradle) :

Android resourc         


        
相关标签:
7条回答
  • 2020-12-25 11:12

    Downgrade your gradle version to 3.1.4 i.e classpath 'com.android.tools.build:gradle:3.1.4'

    0 讨论(0)
  • 2020-12-25 11:14

    was facing this issue today after updating to the new gradle 3.0.1 to 3.2.0 for my case i deleted the ids.xml file in values folder (it was useless in the project) work for me

    0 讨论(0)
  • 2020-12-25 11:15

    Downgrade gradle on 3.1.4 . Check for your build.gradle(Modele:App) file:

        classpath 'com.android.tools.build:gradle:3.1.4'
    

    The project was built :)

    0 讨论(0)
  • 2020-12-25 11:15

    try this code in this build.gradle

     classpath 'com.android.tools.build:gradle:3.1.4'
    
    0 讨论(0)
  • 2020-12-25 11:24

    check for your graddle-wrapper.properties file

    Sun Jul 08 23:40:54 KST 2018
    distributionBase=GRADLE_USER_HOME
    distributionPath=wrapper/dists
    zipStoreBase=GRADLE_USER_HOME
    zipStorePath=wrapper/dists
    distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
    

    check the last line the gradle version file url

    0 讨论(0)
  • 2020-12-25 11:27

    Change the compileSdkVersion to:

    compileSdkVersion 28
    

    These attributes were added in this version. Check here, here and here

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