I am using Android 3.0 canary 4 and making an app. Everything was working fine until yesterday, but today when i opened the project, it gave me an error
F:\
Received similar error:
Failed to transform file 'uat-release.jar' to match attributes {artifactType=android-classes} Transform output file D:\R\project\uat-release.jar does not exist.
In my case, Actual file was aar and bymistake I put .jar in build.gradle(of uat-release module)
configurations.maybeCreate("default")
artifacts.add("default", file('uat-release.jar'))
Solved it by correcting file type:
configurations.maybeCreate("default")
artifacts.add("default", file('uat-release.aar'))