找不到参数[com.google.android.material:material:1.1.0]的方法Implementation()

时间:2019-10-08 17:01:40

标签: android android-studio flutter

我无法在android模拟器中运行我的应用。以前可以正常工作,但是有问题。

错误消息:

A problem occurred evaluating root project 'android'.
> Could not find method implementation() for arguments [com.google.android.material:material:1.1.0] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.

我正在运行gradle 3.2.1。这是我的build.gradle文件的buildscript:

buildscript {
    ext.kotlin_version = '1.2.71'
    repositories {
        google()
        jcenter()
        maven {
            url 'https://dl.google.com/dl/android/maven2'
        }
    }

    dependencies {

        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath 'com.android.tools.build:gradle:3.2.1'
        implementation "com.google.android.material:material:1.1.0"

    }
}

1 个答案:

答案 0 :(得分:3)

那是顶级gradle文件。

将此行移动到app文件夹内build.gradle文件的依赖项部分,并更新为1.1.0-beta01

implementation 'com.google.android.material:material:1.1.0-beta01'

有关更多信息,请参见此处:Why are there two build.gradle files in an Android Studio project?