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
Downgrade your gradle version to 3.1.4 i.e classpath 'com.android.tools.build:gradle:3.1.4'
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
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 :)
try this code in this build.gradle
classpath 'com.android.tools.build:gradle:3.1.4'
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
Change the compileSdkVersion to:
compileSdkVersion 28
These attributes were added in this version. Check here, here and here