A problem occurred configuring root project 'andro...
# community-support
r
A problem occurred configuring root project 'android'. > Could not resolve all files for configuration ':classpath'. > Could not find com.google.gms.google-services4.4.1. Required by: project :
Copy code
buildscript{
    repositories{
        google()
        mavenCentral()
    }
    dependencies{
        classpath 'com.google.gms.google-services:4.4.1'
    }
}

allprojects {
    repositories {
        google()
        mavenCentral()
    }
}

rootProject.buildDir = '../build'
subprojects {
    project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
    project.evaluationDependsOn(':app')
}

tasks.register("clean", Delete) {
    delete rootProject.buildDir
}
this is my root level gradile file
m
you have a typo in
com.google.gms.google-services:4.4.1
, (separator between group id and artifact id)
r
Thankyou it worked 😀
v
Are you aware whether you manually mistyped? I've seen this error from multiple people with exactly that dependency. Maybe some guide somewhere is wrong.