why java.exe exit with value 1 in android studio

后端 未结 10 1160
有刺的猬
有刺的猬 2020-12-04 01:22

Error:Execution failed for task \':app:dexDebug\'.

com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process

10条回答
  •  不思量自难忘°
    2020-12-04 02:16

    The problem is with this line

    ('com.android.support:support-v4:22.0.0')
    

    from dependencies as :

    dependencies {
    compile files('libs/cordova-2.7.0.jar')
    compile files('libs/google-play-services.jar')
    compile files('libs/java_websocket.jar')
    compile 'com.android.support:support-v4:22.0.0'
    }
    

    in project.gradle file.. Remove it..

提交回复
热议问题