AndroidStudio gradle error: "Error: null value in record: resOutputDir = null"

I had a build / make error

Error:null value in entry: resOutputDir=null 

when creating my project in AdroidStudio

+6
source share
2 answers

The solution was to simply delete the .gradle folder in the root directory. (backup to make sure you did not detonate anything).

The answer can be found here: https://discuss.gradle.org/t/null-value-in-entry-dependencycachedir-null/19191/3

+12
source

I solved this and other Gradle build errors by following the menu sequence: "Build> Clean Project".

+1
source

Source: https://habr.com/ru/post/1015212/


All Articles