Error When I Include Gradle's Library
I include compile 'com.specyci:residemenu:1.6+' library in my project. And i Have an error : Error:Execution failed for task ':app:dexDebug'. > com.android.ide.common.internal.L
Solution 1:
You have a problem with this file C:\projects\android-customer\app\build\intermediates\tmp\dex\debug\inputList.txt
, possibly there is format mismatch. Try to open this file and resave it once again. Clean project after. Hope it helps.
UPDATE
Try also add it to your Gradle
android {
defaultConfig {
...
multiDexEnabled = true
}
}
Post a Comment for "Error When I Include Gradle's Library"