My project is a Chat app that uses Parse. After added other dependencies, this problem started appearing:
Error:Execution failed for task \':app:dexDe
try to change this:
compile('com.android.support:multidex:1.0.0') { exclude group: 'com.parse.bolts', module: 'bolts-android' }
To this:
compile('com.android.support:multidex:1.0.0');
the bolds module is used sometimes to fix Duplicated dexLibs
Regards