Slackbot
01/30/2023, 9:57 AMNiels Doucet
01/30/2023, 10:21 AMlocation
module's build.gradle file? I'm suspecting a typo in the dependency declaration of the failing library...Niels Doucet
01/30/2023, 10:22 AMtony
01/30/2023, 10:46 AM> could not find com...
and see that it ends in two periods. The version is specified as 16.
, which is invalid.Mustafa Khetran
01/30/2023, 10:59 AMNiels Doucet
01/30/2023, 11:02 AMMustafa Khetran
01/30/2023, 12:59 PMNiels Doucet
01/30/2023, 1:13 PMlocation/.../build.gradle
Mustafa Khetran
01/30/2023, 1:39 PMbuildscript {
ext.kotlin_version = '1.4.20'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Mustafa Khetran
01/30/2023, 1:39 PMNiels Doucet
01/30/2023, 1:46 PMlocation
module in your project. And the message to me indicates that it specifies an incorrect version 16..
. So you'll have to figure out where that module comes from and how the dependency that's not resolving has been declared.
Given the otherwise limited information, I've got no other suggestions. Perhaps try the suggestions given by gradle and run with --stacktrace
or the other flags?Mustafa Khetran
01/30/2023, 3:55 PMDaniel B Duval
01/30/2023, 5:21 PMplay-services-location
get declared. The build script is referencing version 16.
but the actual version should be 16.0.0Daniel B Duval
01/30/2023, 5:22 PMMustafa Khetran
02/02/2023, 4:25 PM