Reputation: 319
I keep getting error when building my project in Android Studio
Error:null value in entry: aaptFriendlyManifestOutputFile=null
How do I fix this
Upvotes: 7
Views: 1243
Reputation: 275
You dont need to delete whole .gradle folder and in new android studio you might not find the taskArtifacts file so delete taskHistory file only and rebuild the project.
Upvotes: 3
Reputation: 36017
Deleting the .gradle folder in the project root directory solved the problem. Just rebuild the project afterwards.
Upvotes: 1
Reputation: 121
delete the folder on this path : ...\.gradle\3.3\taskArtifacts and build project again, this folder build by gradle again. Now everything works.
Upvotes: 6