从eclipse导入错误到android studio

时间:2015-06-20 11:30:37

标签: android eclipse

我正在导入eclipse项目,项目有一些像googleplay服务,google uri auth和parse这样的库。现在我在android studio中导入一个eclipse项目,但我遇到了一个错误。我曾尝试清理项目和所有需要的东西,但我没有得到答复。以下是我的错误:

  

错误:任务':weddinhHall:dexDebug'执行失败。   > com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:进程'命令   ' C:\ Program Files(x86)\ Java \ jdk1.7.0 \ bin \ java.exe''完成了   非零退出值2

我的build.gradle文件是这样的:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 19
    buildToolsVersion "22.0.1"

    defaultConfig {
        applicationId "com.xxx.xxxxxx.main"
        minSdkVersion 14
        targetSdkVersion 22
    }

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

    }

}


dependencies {

    compile project(':parallaxScroll')
    compile project(':googleDateTimePickers')
    compile 'com.google.android.gms:play-services:+'
    compile files('libs/google-api-client-1.10.3-beta.jar')
    compile files('libs/google-http-client-1.10.3-beta.jar')
    compile files('libs/google-oauth-client-1.10.1-beta.jar')
    compile files('libs/google-play-services.jar')
    compile files('libs/Parse-1.5.0.jar')
    compile files('libs/universal-image-loader-1.9.3.jar')


}

以前有人遇到过这个问题吗?

1 个答案:

答案 0 :(得分:1)

请删除compile files('libs/google-play-services.jar')。重复输入发生时会发生dexDebug。您已初始化Google Play服务compile 'com.google.android.gms:play-services:+'.

仅供参考:请使用最新的Google Play服务版本,例如compile 'com.google.android.gms:play-services:5.0.89'