"File Not Found" Exception in Dexdebug Task of Build

Error:Execution failed for task ':app:dexDebug'

C:\Users\Alejandro\Dropbox\2º DAM\AndroidStudioProjectsDropbox\FastyFast\app\build\intermediates\dex\debug --input-list=C:\Users\Alejandro\Dropbox\2º DAM\AndroidStudioProjectsDropbox\FastyFast\app\build\intermediates\tmp\dex\debug\inputList.txt

º this character is not recognise by Android or the class. I will suggest you to change the name of the project and put something without special characters.

Error with build.gradle - Error:Execution failed for task ':app:dexDebug'

Add support-annotation to your dependencies

compile 'com.android.support:support-annotations:21.0.+

Android Studio: Gradle - build fails -- Execution failed for task ':dexDebug'

The right answer is, that some of your jar files does not compile.
You should go into your build.gradle file in your project, and look in your dependencies.

If you're just importing some jar files, you could try to remove them and add them one at a time. This will help you determine which one of them causes the error.

In my case, I did just that, and when I was importing the last one, the app compiled. So I think the real problem was that I was importing too many at once. But now it all works.

On updating android stdio,Error:Execution failed for task ':app:dexDebug'. com.android.ide.common.process.ProcessException:

it always happens because you enabled multiDex for release builds only, not for debug builds.

Try this:

defaultConfig {
multiDexEnabled true
}

Android Studio: Error:Execution failed for task ':app:dexDebug'

compile 'com.google.android.gms:play-services:+'
compile files('libs/google-play-services.jar')

I think you should remove 1 of those lines.

Execution failed for task ':app:dexDebug'. com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException

I had got the same error. But I resolved the issue by adding the following missing line from build.gradle in dependencies.
compile 'com.parse.bolts:bolts-android:1.+'

After adding this line, my dependencies body was like this:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.0.0'
compile 'com.parse.bolts:bolts-android:1.+'
compile fileTree(dir: 'libs', include: 'Parse-*.jar')
compile fileTree(dir: 'libs', include: "commons-io-2.4.jar") }

You can match with yours too and see if it can help you too



Related Topics



Leave a reply



Submit