1. ホーム
  2. android

[解決済み] Android Studio - プロジェクト評価リスナーの通知に失敗しました。

2022-12-02 20:25:31

質問

以下はAndroid Studioのbuild.gradleのコードです。

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.sg.blahblah"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }

    lintOptions {
        checkReleaseBuilds true
        abortOnError false
        xmlReport true
        htmlReport true
    }

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

            lintOptions {
                disable 'MissingTranslation'
            }
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'com.android.support:design:23.1.1'
    compile 'com.android.support:support-v4:23.1.1'
    compile 'com.android.support:cardview-v7:23.1.1'
    compile 'com.google.android.apps.dashclock:dashclock-api:+'
    compile 'com.roughike:bottom-bar:1.4.0.1'
    compile 'com.diogobernardino:williamchart:2.2'
}

以下のようなエラーが発生します。 Error:A problem occurred configuring project ':app'.

プロジェクト評価リスナーの通知に失敗しました。 com.android.build.gradle.tasks.factory.AndroidJavaCompile.setDependencyCacheDir(Ljava/io/File;)V

どなたか助けてください。

以下は、インスタント・ランのスクリーンショットです。

どのように解決するのですか?

私は一週間前に同じエラーに直面している私は、無効化することによって解決する Instant Run

ファイル → 設定 → ビルド、実行、デプロイメント → インスタントラン を選択し Enable Instant Run のチェックをはずします。

うまくいくといいのですが。

ノート この回答は、Android Studio 3 以下で動作します。