Android studio无法运行项目,连新建的项目都无法运行

不知怎么的,Android Studio就不能运行了,运行新建的空的项目和已经存在的项目都会报下面这个错:

 Error:Execution failed for task ':app:dexDebug'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/bin/java'' finished with non-zero exit value 1

以下是我工程里的build gredle 文件的内容:

 apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.0 rc3"

    defaultConfig {
        applicationId "com.learnmethod.ericalin.myapplication"
        minSdkVersion 'MNC'
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

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

Android Studio的版本是 1.2.2;
操作系统是 OS X Yosemite 版本 10.5.5;

牛们能帮我看看怎么回事么?不胜感激~~~~

build.gradle依赖APP在Android的工作空间

debug,以前可以调试吗,SDK更新下,adb可能出错了。