找不到参数的方法 buildscripts()

Could not find method buildscripts() for arguments

// 顶级构建文件,您可以在其中添加所有 sub-projects/modules.

通用的配置选项
plugins {
    id 'com.android.application' version '7.1.2' apply false
    id 'com.android.library' version '7.1.2' apply false
}

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

buildscripts {
    repositories {
        google()
    }
    dependancies {
        classpath 'com.google.gms:google-services:4.3.10'
    }
}

allprojects {
    repositories {
        google()
    }
}

以上代码是我的项目级别gradle.build文件。不断发生的错误是它无法找到称为 buildscripts() 的方法。我对 gradle 的经验很少,几乎不知道我可以尝试什么。

在您的 Gradle 文件中,所有 buildscript {} 块必须出现在脚本中任何 plugins {} 块之前。所以你的文件应该是这样的:

buildscripts { // Added on top of the file.
    repositories {
        google()
    }
    dependancies {
        classpath 'com.google.gms:google-services:4.3.10'
    }
}

plugins {
    id 'com.android.application' version '7.1.2' apply false
    id 'com.android.library' version '7.1.2' apply false
}

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

allprojects {
    repositories {
        google()
    }
}