Homam Alhaytham
Homam Alhaytham

Reputation: 115

android studio 2.1.2 error (No files to pass to dex)

I have this error when i try to Build any project in android studio

Error:Execution failed for task ':app:transformClassesWithDexForDebug'.

com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: com.android.ide.common.process.ProcessException: No files to pass to dex.

What are the possible errors?

The same is also in any new project

apply plugin: 'com.android.application'

android {
    compileSdkVersion 24
    buildToolsVersion "24.0.1"

    defaultConfig {
        applicationId "com.new.myapplication"
        minSdkVersion 16
        targetSdkVersion 24
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:24.1.1'
    compile 'com.android.support:design:24.1.1'
}

Upvotes: 1

Views: 341

Answers (1)

Homam Alhaytham
Homam Alhaytham

Reputation: 115

i can not resolve the problem , it is fixed when i updated android studio to version 2.1.3

thanks to all

Upvotes: 0

Related Questions