Slackbot
06/15/2022, 6:06 PMtony
06/15/2022, 6:09 PMdependencies {
constraints {
// Some plugins (e.g., Paparazzi) try to quietly upgrade the version of AGP we use.
classpath('com.android.tools.build:gradle') {
version {
strictly '7.1.2'
}
}
}
}
(that's almost exactly code we have in our repo)M3
06/15/2022, 6:10 PMM3
06/15/2022, 6:14 PMCould not find method classpath() for arguments
M3
06/15/2022, 6:14 PMM3
06/15/2022, 6:21 PMclasspath
with testImplementation
and it seems to be working - need to see if I can use minimum version instead of a strict one now. Thankstony
06/15/2022, 6:27 PMbuildscript
blocktony
06/15/2022, 6:27 PMM3
06/15/2022, 6:28 PMrequire
means “at least this version” vs strict
- Thanks