This message was deleted.
# general
s
This message was deleted.
l
Sorry I don't get it. The chapter describes how to add a plugin to the classpath. Could you give me a hint please. I have attached the structure of my included build.
@Vampire When using a precompiled plugin script gradle generates accessors and also a file called
PluginSpecBuilders.kt
. There are shortcuts for plugins like
kotlin("android")
or
id("com.android.application")
so you can use
kotlin-android
or
application
instead. While I can use
kotlin-android
in my precompiled script plugin, using
application
or
library
shortcut does not work because it points to
id("org.gradle.application")
instead of
id("com.android.application")
. One time I did point to the right plugin but not anymore. Do you know why it does not work?