Error:execution Failed For Task ':app:packagealldebugclassesformultidex' In Android Studio
I am getting the following error when I run my application where creative sdk is integrated for photo editing option. Error:Execution failed for task ':app:packageAllDebugClassesFo
Solution 1:
Try to remove the explicit dependency on multidex library (remove the compile 'com.android.support:multidex:1.0.1'
line from your dependencies in build.gradle).
The gradle plugin adds the correct version automagically when you're specifying multiDexEnabled=true
.
Post a Comment for "Error:execution Failed For Task ':app:packagealldebugclassesformultidex' In Android Studio"