久久久久久久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 庫的傳遞依賴)
主站蜘蛛池模板: 日韩中文字幕在线播放 | 精品久久99 | 国产大毛片 | 亚洲欧美一区二区三区在线 | 无码一区二区三区视频 | 成年人免费网站 | 毛片一级片 | 中文字幕一区二区三区四区五区 | 国产小网站 | 亚洲精品美女 | 亚洲色图网址 | 在线免费亚洲视频 | 欧美一级久久精品 | 日韩在线中文字幕 | 欧美一二三| 91精品国产91久久久久游泳池 | 男女污污动态图 | 久久精品国产免费 | 99视频在线 | 国产一二三区精品视频 | 极品的亚洲 | 久久久久国产 | 成人a免费 | 中文一区二区视频 | 成人免费视频网站 | 久久精品亚洲 | 成人免费看电影 | 91爱啪啪 | 国产一区二区三区四区在线观看 | av永久免费 | 亚洲欧美精品 | 亚洲精品国产成人 | 国产成人免费视频 | 精品国产精品三级精品av网址 | 日韩在线观看网站 | 国产一区二区精 | 日本公妇乱淫xxxⅹ 国产在线不卡 | 天天操夜夜艹 | 成人九色 | 国产精品一区二区三区久久 | 久久av资源网 |