Buildtools 24.0.1 requires Java 1.8 or above. Current JDK version is 1.7.

【不具合内容】

Android Studioを起動直後に発生。

【原因】

Android N(Preview)のSDKをインストールし、build.gradleを見ると「compileSdkVersion 24」、「buildToolsVersion “24.0.1”」、「targetSdkVersion 24」となっているにもかかわらず、Android Studio内のJDK Locationの設定がJDK 1.7のままとなっている。

apply plugin: 'com.android.application'

android {
    compileSdkVersion 24
    buildToolsVersion "24.0.1"

    defaultConfig {
        applicationId "jp.relaxes.myapplication"
        minSdkVersion 15
        targetSdkVersion 24
        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:24.1.1'
}

【解決方法】

[File]-[Other Settings]-[Default Project Structure]を選択
JDK Location:にJDK8をインストールしたパスを設定する。

D:\bin\Java\jdk1.8.0_101

error01

コメントを残す

* 印は必須項目です。メールアドレスは公開されません。

次のHTMLタグと属性を使用することができます: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください