Произошел сбой при выполнении org.jetbrains.kotlin.gradle.internal.KaptExecution установка Glide в Android studio

#android #kotlin #build.gradle

#Android #kotlin #build.gradle

Вопрос:

Я читаю документы, касающиеся нового glide, о том, как установить мое приложение, сейчас это довольно сложно, поскольку они обновляют новый API и документ в отличие от предыдущих и следуя там инструкциям, но почему я получаю эту ошибку:

 A failure occurred while executing org.jetbrains.kotlin.gradle.internal.KaptExecution
  

Я уже перепробовал так много способов его отладки. но моя проблема все еще не была решена.

Вот мой build.grade:app :

 apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
apply plugin: 'realm-android'

android {
    compileSdkVersion 30
    buildToolsVersion "30.0.1"

    defaultConfig {
        applicationId "com.example.app1"
        minSdkVersion 16
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

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

dependencies {
    implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
    implementation 'androidx.core:core-ktx:1.3.1'
    implementation 'androidx.appcompat:appcompat:1.2.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    implementation 'androidx.recyclerview:recyclerview:1.1.0'
    implementation 'androidx.cardview:cardview:1.0.0'
    implementation 'com.google.android.gms:play-services-maps:17.0.0'
    implementation 'com.google.android.material:material:1.2.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    implementation 'com.android.volley:volley:1.1.1'
    implementation 'com.google.android.gms:play-services-location:17.0.0'
    implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.2.0"
    implementation 'com.google.code.gson:gson:2.8.6'
    implementation("com.squareup.okhttp3:okhttp:4.8.1")

    kapt 'com.github.bumptech.glide:compiler:4.11.0'
}
  

Ответ №1:

Кажется, вы забыли добавить зависимость

попробуйте это

 dependencies {
  implementation 'com.github.bumptech.glide:glide:4.11.0'
  kapt 'com.github.bumptech.glide:compiler:4.11.0'
}
  

также добавьте в свой этот файл уровня внутри вашего проекта build.gradle :

 repositories {
      google()
      jcenter()
    }
  

Комментарии:

1. Да2, я забыл реализовать его зависимости, но я приму это как хороший ответ.