添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

I am having a issues running the project in android studio. #4196

Closed

Description

I am getting this error when i tried to run the project

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 { @d :\app\build\intermediates\tmp\desugar_args4306755243322603004}

I am using gradle version 3.0.1
Android Studio 3.0.1

My Gradle file as follows in app folder

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

dependencies {
    classpath 'io.fabric.tools:gradle:+'
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
apply plugin: 'realm-android'

repositories {
mavenCentral()
maven { url "https://jitpack.io" }
maven { url 'https://maven.google.com' }//for android O
maven { url 'https://maven.fabric.io/public' }
maven { url 'https://github.com/leonardocardoso/mvn-repo/raw/master/maven-deploy' }

android {
compileSdkVersion 26
buildToolsVersion '26.0.2'

defaultConfig {
    applicationId "com.fccchat"
    resValue 'string', 'package_name', applicationId
    minSdkVersion 16
    targetSdkVersion 26
    versionCode 1
    versionName "1.0.0"
    multiDexEnabled true
    vectorDrawables.useSupportLibrary = true
    renderscriptTargetApi 26
    renderscriptSupportModeEnabled true
lintOptions {
    disable 'RestrictedApi'
}//this until  Google release a fix .bottomsheet super
dexOptions {
    preDexLibraries true
    javaMaxHeapSize "4g"
    dexInProcess = true
compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
buildTypes {
    release {
        proguardFiles 'proguard-rules.txt'
    debug {
        minifyEnabled false
        shrinkResources false
        renderscriptDebuggable false
        jniDebuggable false
        proguardFiles 'proguard-rules.txt'
        signingConfig signingConfigs.debug
packagingOptions {
    exclude '.readme'
    exclude 'LICENSE.txt'
    exclude 'META-INF/DEPENDENCIES'
    exclude 'META-INF/DEPENDENCIES.txt'
    exclude 'META-INF/LGPL2.1'
    exclude 'META-INF/LICENSE'
    exclude 'META-INF/LICENSE.txt'
    exclude 'META-INF/NOTICE'
    exclude 'META-INF/NOTICE.txt'
    exclude 'META-INF/README.txt'
    exclude 'META-INF/dependencies.txt'
    exclude 'META-INF/license.txt'
    exclude 'META-INF/notice.txt'
    exclude 'META-INF/services/javax.annotation.processing.Processor'
    exclude 'META-INF/MANIFEST.MF'

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

def supportLibsVer = "26.+"
def googlePlayServicesVer = "11.6.0"
implementation "com.android.support:appcompat-v7:$supportLibsVer"
implementation "com.android.support:cardview-v7:$supportLibsVer"
implementation "com.android.support:design:$supportLibsVer"
implementation "com.android.support:recyclerview-v7:$supportLibsVer"
implementation "com.android.support:palette-v7:$supportLibsVer"
//noinspection GradleCompatible
implementation "com.google.android.gms:play-services-ads:$googlePlayServicesVer"
implementation "com.google.android.gms:play-services-drive:$googlePlayServicesVer"
implementation "com.google.firebase:firebase-messaging:$googlePlayServicesVer"
implementation 'com.android.support:multidex:1.0.2'
implementation 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
implementation 'com.github.bumptech.glide:glide:3.7.0'
implementation 'jp.wasabeef:glide-transformations:2.0.1'
implementation 'com.squareup.picasso:picasso:2.5.2'
implementation 'jp.wasabeef:picasso-transformations:2.1.0'
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
implementation 'com.squareup.okhttp3:logging-interceptor:3.6.0'
implementation 'com.squareup.okhttp3:okhttp:3.8.1'
implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.3.0'
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
implementation 'io.reactivex.rxjava2:rxjava:2.1.2'
implementation 'org.greenrobot:eventbus:3.0.0'
implementation 'com.github.hani-momanii:SuperNova-Emoji:1.1'
implementation 'me.leolin:ShortcutBadger:1.1.16@aar'
implementation('io.socket:socket.io-client:1.0.0') {
    // excluding org.json which is provided by Android
    exclude group: 'org.json', module: 'json'
implementation('com.github.ozodrukh:CircularReveal:2.0.1@aar') {
    transitive = true;
implementation 'joda-time:joda-time:2.9.7'
implementation('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
    transitive = true;
implementation 'com.googlecode.libphonenumber:libphonenumber:8.5.2'
implementation 'com.orhanobut:logger:1.15'
implementation 'io.pristine:libjingle:11139@aar'
implementation 'pl.bclogic:pulsator4droid:1.0.3'
implementation 'com.github.yalantis:ucrop:2.2.1-native'
implementation 'org.jsoup:jsoup:1.8.3' // required for link preview
implementation 'com.leocardz:link-preview:1.2.2@aar'
implementation 'com.facebook.network.connectionclass:connectionclass:1.0.1'
implementation 'com.facebook.android:account-kit-sdk:4.+'
apply plugin: 'com.google.gms.google-services'

in root folder

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

buildscript {
repositories {
jcenter()
mavenCentral()
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath "io.realm:realm-gradle-plugin:4.2.0"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.2'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
classpath 'com.google.gms:google-services:3.1.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files

allprojects {
repositories {
jcenter()
mavenCentral()

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

I am not able to resolve this error, i tried updating kotlin plugin, tried removing it,
i try clean and rebuild thousands of times and i tried invalidate restart cache thousands of times , i spend hours resolving this error but still no luck.

If anyone can help me regarding this, i will be thankful.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Assignees

No one assigned

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions