AlertDialogBu​​ilder不支持major.minor版本52

时间:2017-11-22 12:36:09

标签: android android-alertdialog

我正在使用Android Studio构建应用。 我第一次进入gradle文件:

compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
        applicationId "com.mcsolution.easymanagementandroid"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.0.0'
    compile files('libs/gson-2.2.4.jar')
    compile 'com.itextpdf:itextg:5.5.9'
}

现在我已在我的项目中添加了卡片视图,因此我修改了我的gradle文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.0"

    defaultConfig {
        applicationId "com.mcsolution.easymanagementandroid"
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:25.0.0'
    compile files('libs/gson-2.2.4.jar')
    compile 'com.itextpdf:itextg:5.5.9'
    compile 'com.android.support:cardview-v7:25.0.0'
}

但是现在如果我尝试运行我的应用程序,我就会出现这个错误:

Error:Execution failed for task ':app:transformClassesWithInstantRunForDebug'.
> android/app/AlertDialog$Builder : Unsupported major.minor version 52.0

我该如何解决?

1 个答案:

答案 0 :(得分:0)

您应该使用Android SDK工具版25.1.3或更高版本 - 我看到的那个。另请检查JAVA_HOME以使用JDK 1.8。您还可以通过添加

在gradle中启用JDK 1.8
compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}