如何修复“找不到方法”错误?

时间:2019-05-29 10:48:35

标签: android gradle build.gradle

我正在Android Studio上进行家庭作业,一切都很好,我关闭了电脑,直到第二天,当我打开android studio时,发现了此错误消息

  

错误:在类型org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler的对象上找不到参数[目录'libs']的方法Implementation()。

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    testImplementation 'junit:junit:4.13-beta-3' 
    //noinspection GradleCompatible
    implementation 'com.android.support:appcompat-v7:26.0.0-alpha1'

    // Displaying images
    implementation 'com.github.bumptech.glide:glide:4.9.0'
    implementation 'com.google.firebase:firebase-core:16.0.9'

    // Realtime database
    implementation 'com.google.firebase:firebase-database:17.0.0'
    implementation 'com.android.support:support-v4:28.0.0'
}

3 个答案:

答案 0 :(得分:0)

由于Glide库导致此错误:

还添加了以下依赖项和下滑依赖项:

annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'

如果您使用的是 androidx ,则还需要添加:

annotationProcessor 'androidx.annotation:annotation:1.0.2'

希望对您有帮助。

答案 1 :(得分:0)

构建文件应用级别:

apply plugin: 'com.android.application'

android {
compileSdkVersion 28
defaultConfig {
    applicationId "com.example.appname"
    minSdkVersion 15
    targetSdkVersion 28
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
    }
  }
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:support-vector-drawable:28.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
//Add others below

}

为项目级别构建文件:

buildscript {

  repositories {
    google()
    jcenter()

    maven {
        url 'https://maven.fabric.io/public'
    }
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.2.1'
    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files

  }
}

allprojects {
repositories {
    google()
    jcenter()
}
}

task clean(type: Delete) {
  delete rootProject.buildDir
}

具有与上述相同的效果后,执行清理然后重建。

答案 2 :(得分:0)

发生这种情况是因为buildscript依赖项已过时;将它们更新为当前版本,那么它将了解implementation()api()-或仅使用以前的compile()

buildscript {
    repositories {
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.1'
    }
}

该版本号始终等于Android Studio的版本号;例如。构建工具3.4.1需要Android Studio 3.4.1来构建...更新整个安装会自动修复它。