Android 不支持调试 major.minor 版本 52.0

Android Debug Unsupported major.minor version 52.0

我已经导入了一个我工作了很多天的项目,但我不得不升级 Android Studio,然后,我得到这个错误:

Error:(1, 1) A problem occurred evaluating project ':app'.
> java.lang.UnsupportedClassVersionError: com/android/build/gradle/AppPlugin : 
Unsupported major.minor version 52.0

此外,当我检查我的 类 时,我在每个 R 上看到一条红线,并表示无法解析符号 R。 你知道如何解决它吗? 我的 android Studio 版本是:2.3.3

构建 Gradle :

buildscript {
repositories {
    jcenter()
}
dependencies {
    classpath 'com.android.tools.build:gradle:2.3.1'

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

  allprojects {
repositories {
    jcenter()
}
}

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

apply plugin: 'com.android.application'

 android {
compileSdkVersion 23
buildToolsVersion '25.0.0'

defaultConfig {
    applicationId "hadirfinal.amjad.hadirfinal"
    minSdkVersion 14
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
 }

    android {
useLibrary 'org.apache.http.legacy'
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.tools.build:gradle:2.1.3'
}

首先,检查您的 Java 版本。 Unsupported major.minor version 52.0 与 Java 相关 8. 从文件 -> 项目结构 -> SDK 位置检查 SDK Location 中的 JDK:

然后用 build:gradle:2.3.3:

升级你的 root build.gradle
buildscript {
  repositories {
    jcenter()
  }

  dependencies {
    classpath 'com.android.tools.build:gradle:2.3.3'
  }
}

allprojects {
  repositories {
    jcenter()
  }
}

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

然后更新 compileSdkVersionbuildToolsVersiontargetSdkVersion,并在 app build.gradle 中使用相同版本的支持库.这里我们使用版本 25。然后删除以下行 compile 'com.android.tools.build:gradle:2.1.3' 因为你不需要它。所以,它看起来像这样:

apply plugin: 'com.android.application'

android {
   compileSdkVersion 25
   buildToolsVersion '25.0.3'

  defaultConfig {
     applicationId "hadirfinal.amjad.hadirfinal"
     minSdkVersion 14
     targetSdkVersion 25
     versionCode 1
     versionName "1.0"
  }

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

android {
   useLibrary 'org.apache.http.legacy'
}

dependencies {
   compile fileTree(dir: 'libs', include: ['*.jar'])
   testCompile 'junit:junit:4.12'
   compile 'com.android.support:appcompat-v7:25.3.1'
}