I'm adding benchmark gradle plugin in top level gr...
# androidx
a
I'm adding benchmark gradle plugin in top level gradle
Copy code
plugins {
    id 'androidx.benchmark' version '1.0.0' apply false
   
}
but getting this error
e
looking at https://maven.google.com/web/m_index.html?q=benchmark#androidx.benchmark:androidx.benchmark.gradle.plugin it seems the plugin marker wasn't published for 1.0. so either use settings.gradle pluginManagement to explicitly set the module, use the old buildscript classpath method, or use 1.1
a
ok, thanks 🙌