Whever I try to debug and deploy my android application (in Android Studio 0.9) I get the following error:
Execution failed for task \':app:packageAllDebugCl
In my case the reason was Facebook Android SDK. Just exclude transitive dependency:
compile('com.facebook.android:facebook-android-sdk:+') {
exclude group: 'com.android.support', module: 'multidex'
}
In your case it can be some other dependency - just sort through them one by one and you'll find the one who has transitive multidex
dependency.