apply plugin: 'com.google.gms.google-services'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
classpath 'com.android.tools.build:gradle:3.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.61"
我具有上述gradle配置,但仍然可以获取
Could not find method kapt() for arguments [com.github.bumptech.glide:compiler:4.3.1] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
有人可以告诉我我要去哪里错吗?感谢您的提前帮助
答案 0 :(得分:23)
项目级build.gradle
:
buildscript {
repositories {
mavenCentral()
jcenter()
google()
}
dependencies {
classpath "com.android.tools.build:gradle:3.3.2"
classpath "com.google.gms:google-services:4.2.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.70"
}
}
模块级build.gradle
:
apply plugin: "kotlin-android"
apply plugin: "kotlin-android-extensions"
apply plugin: "kotlin-kapt"
...
android {
}
dependencies {
implementation "com.github.bumptech.glide:glide:4.8.0"
// annotationProcessor "com.github.bumptech.glide:compiler:4.8.0"
kapt "com.github.bumptech.glide:compiler:4.8.0"
}
...
apply plugin: "com.google.gms.google-services"
答案 1 :(得分:2)
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-android-extensions'
id 'kotlin-kapt' // add this line in file build.gradle (Module : YourAppName)
}
答案 2 :(得分:-1)
我认为Glide的新版本可以使用kapt
,因此,请尝试添加:
kapt 'com.github.bumptech.glide:compiler:4.8.0'
在您的Build.gradle
依赖项when using Kotlin中。
请注意,Glide依赖项应与编译器具有相同的版本:
dependencies {
implementation 'com.github.bumptech.glide:glide:4.8.0'
kapt 'com.github.bumptech.glide:compiler:4.8.0'
}
或者,尝试将Kotlin更新为v 1.2.71
:
buildscript {
ext.kotlin_version = '1.2.71'
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
在根中Build.gradle
。这应该起作用。