java - 将项目导入到 android studio 3.0.1 后任务 : 'app.transformClassesWithDesugarForDebug' . 执行失败

标签 java android

我无法在 android studio 3.0.1(稳定版)中运行该应用程序。之前在android 2.3.2版本中还不错,但是在这个版本的android studio中遇到了这个问题。

正如我在 gradle 文件中评论了 Retrolambda 插件,但仍然面临这个问题。我尝试通过在堆栈溢出中搜索相关问题来解决该问题,但对我不起作用,因此提出问题。

请查找附带的带有错误消息的代码块以供引用,如果您需要与此问题相关的任何其他信息,请发表评论:

提前致谢。

build.gradle(项目):

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
        maven {
            url "https://jitpack.io"
        }
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        classpath 'com.google.gms:google-services:3.0.0'
        //classpath 'me.tatarka:gradle-retrolambda:3.6.0'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
        google()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

build.gradle(应用程序):

buildscript {
    repositories {
        maven { url 'https://maven.fabric.io/public' }
    }

    dependencies {
        classpath 'io.fabric.tools:gradle:1.+'
    }
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
//apply plugin: 'me.tatarka.retrolambda'


repositories {
    maven { url 'https://maven.fabric.io/public' }
    maven { url "http://clojars.org/repo" }
}

repositories {
    flatDir {
        dirs 'libs'
    }
}
//29 , 3.2.1
android {
    signingConfigs {
        config {
        }
    }
    compileSdkVersion 26
    buildToolsVersion '26.0.2'
    defaultConfig {
        applicationId "com.XXX.XXX"
        minSdkVersion 16
        targetSdkVersion 26
        versionCode 61
        versionName "4.1.0"
        multiDexEnabled true
        vectorDrawables.useSupportLibrary = true
        testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
    }
    dataBinding {
        enabled = true
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    buildTypes {
        release {
            buildConfigField("boolean", "testing", "false")
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            resValue("string", "truecallerKey", "XXXXXX")
        }
        debug {
            buildConfigField("boolean", "testing", "true")
            applicationIdSuffix ""
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            versionNameSuffix ".testing"
            resValue("string", "truecallerKey", "XXXXXX")
        }
        beta {
            applicationIdSuffix ".beta"
            minifyEnabled true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            versionNameSuffix ".beta"
        }
    }
    dexOptions {
        maxProcessCount 4
        javaMaxHeapSize "4g"
    }

}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile('com.crashlytics.sdk.android:crashlytics:2.5.5@aar') {
        transitive = true;
    }
    compile(name: "truesdk-0.5", ext: "aar")
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support:design:25.3.1'
    compile 'com.android.support:recyclerview-v7:25.3.1'
    compile 'com.android.support:cardview-v7:25.3.1'
    testCompile 'junit:junit:4.12'
    androidTestCompile 'com.android.support.test:runner:0.5'
    androidTestCompile 'com.android.support.test:rules:0.5'
    androidTestCompile 'com.android.support:appcompat-v7:25.3.1'
}
apply plugin: 'com.google.gms.google-services'

错误消息:

Error:Execution failed for task ':app:transformClassesWithDesugarForDebug'. com.android.build.api.transform.TransformException: java.lang.RuntimeException: java.lang.RuntimeException: com.android.ide.common.process.ProcessException: Error while executing java process with main class com.google.devtools.build.android.desugar.Desugar with arguments {--input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/3.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/4.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/11.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/12.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/5.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/6.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/71.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/72.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/62.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/63.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/19.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/20.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/39.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/40.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/45.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/46.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/41.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/42.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/15.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/16.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/66.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/67.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/77.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/78.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/20.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/21.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/49.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/50.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/74.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/75.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/51.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/52.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/38.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/39.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/57.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/58.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/0.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/1.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/16.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/17.jar --input /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/40.jar --output /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/desugar/debug/41.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/classes/debug --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/0.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/1.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/2.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/3.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/4.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/5.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/6.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/7.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/8.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/9.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/10.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/11.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/12.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/13.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/14.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/15.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/16.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/17.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/18.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/19.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/20.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/21.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/22.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/23.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/24.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/25.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/26.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/27.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/28.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/29.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/30.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/31.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/32.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/33.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/34.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/35.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/36.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/37.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/38.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/39.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/40.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/41.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/42.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/43.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/44.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/45.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/46.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/47.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/48.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/49.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/50.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/51.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/52.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/53.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/54.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/55.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/56.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/57.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/58.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/59.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/60.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/61.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/62.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/63.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/64.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/65.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/66.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/67.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/68.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/69.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/70.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/71.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/72.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/73.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/74.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/75.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/76.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/77.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/78.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/79.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/80.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/81.jar --classpath_entry /Users/cepl/Desktop/rapidoPax/app/build/intermediates/transforms/stackFramesFixer/debug/82.jar --bootclasspath_entry /Users/cepl/Library/Android/sdk/platforms/android-26/android.jar --bootclasspath_entry /Users/cepl/Library/Android/sdk/platforms/android-26/optional/org.apache.http.legacy.jar --bootclasspath_entry /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/jre/lib/resources.jar --bootclasspath_entry /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/jre/lib/rt.jar --bootclasspath_entry /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/jre/lib/jsse.jar --bootclasspath_entry /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/jre/lib/jce.jar --bootclasspath_entry /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/jre/lib/charsets.jar --min_sdk_version 16 --desugar_try_with_resources_if_needed --desugar_try_with_resources_omit_runtime_classes}

最佳答案

我在 Ionic3 中也遇到了同样的问题。所以只需运行这些命令..

  1. cordova clean android
  2. ionic cordova 构建 android

执行 2 个命令后,您将获得 .apk 文件

关于java - 将项目导入到 android studio 3.0.1 后任务 : 'app.transformClassesWithDesugarForDebug' . 执行失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47483649/

相关文章:

android - 如何将 ALSA 与 android ndk 一起使用?

安卓 Stripe 集成

android - 想在调用时实现选项

android - OpenCV:从已知大小的正方形中查找像素宽度

java - 如何在 "ParameterMap"中获取参数名称的字符串数组(在 Java 中)

java - 将数组转换为多维数组 - Java

java - TabbedPane 更改选项卡内的面板

android - 如何使用android中的任何布局将两个 TextView 与背景水平对齐?

java - 在java中为系统托盘创建单个实例

安全 dao 的 Java 指南/提示