久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

錯誤:任務“:app:transformClassesWithDexForDebug"執行

Error:Execution failed for task #39;:app:transformClassesWithDexForDebug#39;. gt; com.android.build.api.transform.TransformException:..non-zero exit value 3(錯誤:任務“:app:transformClassesWithDexForDebug執行失敗.gt;com.android.buil
本文介紹了錯誤:任務“:app:transformClassesWithDexForDebug"執行失敗.>com.android.build.api.transform.TransformException:..非零退出值 3的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

問題描述

After Clean Project -> Rebuild Project my android project I am getting below error

Error:Execution failed for task ':app:transformClassesWithDexForDebug'. > com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/usr/lib/jvm/java-7-oracle/bin/java'' finished with non-zero exit value 3

Gradle :

    apply plugin: 'com.android.application'

    android {
    compileSdkVersion 23
    buildToolsVersion "23.0.1"

    defaultConfig {
        applicationId "com.myapplicationname.app"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
    }
    useLibrary 'org.apache.http.legacy'

}

    dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.0.1'
    compile 'com.android.support:design:23.0.1'
    compile 'com.google.android.gms:play-services:8.3.0'
    compile files('libs/gcm.jar')
    compile 'com.android.support:multidex:1.0.1'
    compile 'org.apache.httpcomponents:httpcore:4.4.4'
    compile('org.apache.httpcomponents:httpmime:4.3.6') {
        exclude module: "httpclient"
    }
    //facebook sdk
    compile 'com.facebook.android:facebook-android-sdk:4.7.0'
    compile 'org.apache.httpcomponents:httpcore:4.4.3'

    compile 'com.paypal.sdk:paypal-android-sdk:2.12.4'
    //facebook sdk
    compile 'com.facebook.android:facebook-android-sdk:4.7.0'

}

I already refer this , this , But I can't got my solution.What I need to do to resolve it.

解決方案

I just update my gradle file like below.This work like charm!!

I added below code in my gradle:

dexOptions {
        javaMaxHeapSize "4g" //specify the heap size for the dex process
        preDexLibraries = false //delete the already predexed libraries
    }

My updated Gradle:

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.1"

    defaultConfig {
        applicationId "com.myapplicationname.app"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
    }
  //====================Add below two line=============
    dexOptions {
        javaMaxHeapSize "4g" //specify the heap size for the dex process
        preDexLibraries = false //delete the already predexed libraries
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
    }
    useLibrary 'org.apache.http.legacy'

}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.0.1'
    compile 'com.android.support:design:23.0.1'
    compile 'com.google.android.gms:play-services:8.3.0'
    compile files('libs/gcm.jar')
    compile 'com.android.support:multidex:1.0.1'
    compile 'org.apache.httpcomponents:httpcore:4.4.4'
    compile('org.apache.httpcomponents:httpmime:4.3.6') {
        exclude module: "httpclient"
    }
    //facebook sdk
    compile 'com.facebook.android:facebook-android-sdk:4.7.0'
    compile 'org.apache.httpcomponents:httpcore:4.4.3'

    compile 'com.paypal.sdk:paypal-android-sdk:2.12.4'
    //facebook sdk
    compile 'com.facebook.android:facebook-android-sdk:4.7.0'

}

這篇關于錯誤:任務“:app:transformClassesWithDexForDebug"執行失敗.>com.android.build.api.transform.TransformException:..非零退出值 3的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

相關文檔推薦

IncompatibleClassChangeError after updating to Android Build Tools 25.1.6 GCM / FCM(更新到 Android Build Tools 25.1.6 GCM/FCM 后出現 IncompatibleClassChangeError)
How to get current flavor in gradle(如何在 gradle 中獲取當前風味)
How to fix quot;unexpected element lt;queriesgt; found in lt;manifestgt;quot; error?(如何修復“意外元素lt;查詢gt;在“清單中找到錯誤?)
Multi flavor app based on multi flavor library in Android Gradle(基于 Android Gradle 中多風味庫的多風味應用)
Android dependency has different version for the compile and runtime(Android 依賴在編譯和運行時有不同的版本)
Transitive dependencies for local aar library(本地 aar 庫的傳遞依賴)
主站蜘蛛池模板: 一区二区三区中文字幕 | 成人免费在线小视频 | 99re视频在线| 国精品一区二区 | 天天干天天玩天天操 | 亚洲黄色成人网 | 亚洲国产情侣 | 亚洲高清视频在线观看 | 免费观看一级特黄欧美大片 | 精品国产一区二区三区性色av | 91精品国产91久久久久久吃药 | 国产超碰人人爽人人做人人爱 | a黄在线观看 | a级网站 | 福利国产 | 久久99精品久久久水蜜桃 | 日本 欧美 三级 高清 视频 | 最新免费黄色网址 | 免费亚洲视频 | 国产片侵犯亲女视频播放 | 国产欧美日韩精品一区二区三区 | 国产成人综合久久 | 日韩精品 电影一区 亚洲 | 日韩精品久久久 | 91电影| 涩涩鲁亚洲精品一区二区 | 欧美久久电影 | 欧美色性 | 亚洲精品9999久久久久 | 欧美日韩专区 | www精品美女久久久tv | 久久网亚洲| 精品网 | 亚洲a视频 | 国产一区二区电影 | 中文字幕视频网 | 国产精品视频免费播放 | 天天综合国产 | 免费观看的黄色网址 | 日本五月婷婷 | 成人精品一区二区 |