Android的 - 变换中的类地塞米松进行调试Android的 - 变换中的类地塞米松进行调试(A

2019-05-12 00:39发布

我的项目工作正常,直到我添加了Facebook的依赖。 我开始收到此错误。 我读过很多的问题,这个问题似乎涉及到MultiDex 。 但没有一个解决方案的工作对我来说

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-openjdk-amd64/bin/java'' finished with non-zero exit value 1

即使在我删除,我添加了什么,但它仍然显示,也gradle这个似乎采取了很多的时间,而不是通常的建筑

这里是我的build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

defaultConfig {
    applicationId "net.ciblo.spectrodraft"
    minSdkVersion 15
    targetSdkVersion 23
    versionCode 1
    multiDexEnabled true

}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'

repositories {
    mavenCentral()
    maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }

}
compile 'com.facebook.android:facebook-android-sdk:[4,5)'
compile 'com.android.support:multidex:1.0.1'
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.android.support:cardview-v7:23.2.1'
compile 'com.android.support:design:23.2.1'
compile 'com.daimajia.easing:library:1.0.1@aar'
compile 'com.daimajia.androidanimations:library:1.1.3@aar'
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.mcxiaoke.volley:library-aar:1.0.0'
compile 'com.pnikosis:materialish-progress:1.5'
compile 'com.nineoldandroids:library:2.4.+'
compile 'com.michaelpardo:activeandroid:3.1.0-SNAPSHOT'
compile 'com.android.support:support-v4:23.2.1'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'

}

Answer 1:

添加以下代码build.gradle应用模块解决我的问题

android{
    defaultConfig {

        // Enabling multidex support.
        multiDexEnabled true
    }


    dexOptions {
        javaMaxHeapSize "4g"
    }
}
dependencies {
    //...
    compile 'com.android.support:multidex:1.0.0'
}


Answer 2:

你可以选择编译谷歌播放服务API为您的应用程序。 例如,只包括谷歌飞度和Android Wear的API,替换下面的行中您的build.gradle文件:

 compile 'com.google.android.gms:play-services:8.4.0'

这些线路:

compile 'com.google.android.gms:play-services-fitness:8.4.0'
compile 'com.google.android.gms:play-services-wearable:8.4.0'

==>保持在您的应用程序(包括框架API,库方法,以及你自己的代码)下65536极限的方法数。



Answer 3:

添加在的build.gradle以下固定的问题对我来说,

android {
//...

compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
//...
}


Answer 4:

这一可怕的经常性问题再次成为我最近。 该gradle这个在应用永久建立档位:transformClassesWithDexForDebug,只是运行几个小时,从来没有完成。 这一次,我通过删除所有引用到“织物”固定它,Crashlytics的一个新层推在我们身上。

//apply plugin: 'io.fabric'   //REMOVE
//classpath 'io.fabric.tools:gradle:1.26.1'  //REMOVE


文章来源: Android - transform Classes With Dex For Debug