plugins { `kotlin-dsl` } kotlinDslPluginOptions { experimentalWarning.set(false) } gradlePlugin { plugins { create("pluginsForCoolKids") { id = "rustPlugin" implementationClass = "{{reverse-domain app.domain}}.RustPlugin" } } } repositories { google() mavenCentral() } dependencies { compileOnly(gradleApi()) implementation("com.android.tools.build:gradle:7.0.2") }