In my new project in bumblebee I see something lik...
# android
r
In my new project in bumblebee I see something like below in my top level gradle file. I usually see
com.android.application
in my module level gradle file.
Copy code
plugins {
    id 'com.android.application' version '7.0.0-alpha13' apply false
}
And I don' see any dependencies block like
Copy code
{
classpath('com.android.tools.build:gradle:7.0.0-alpha13')
}
Don't we need this anymore? How my new project is getting android gradle plugin?
😶 2
v
If you look at https://maven.google.com/web/m_index.html#com.android.application:com.android.application.gradle.plugin, you see that Google publishes the proper marker artifact since 4.2.0-alpha09, so since then you don't need the
classpath
entry or the manual mapping in the settings script anymore.
🙏 1