I am unable to build my application I am running the latest build tools downloaded today, this started happening after the update.
-dex:
[dex] Converting
I think the directory in bin change from
com/XXX/XXX
to
classes/com/XXX.
You can clean your project and solve it.
Change implementation fileTree(include: ['.jar'], dir: 'libs') to provided fileTree(include: ['.jar'], dir: 'libs') in your app gradle.build> dependencies.
Make sure it has changed in your Module Settings> Dependencies {include=[*jar] dir=libs} too. It must have a scope of Provided next to it and not Implementation.