Hi everyone, I'm working on a Gradle plugin to ext...
# community-support
m
Hi everyone, I'm working on a Gradle plugin to extract common build logic for all of my android library modules. After setting up the plugin, I'm encountering the following error when running the appkspProdReleaseKotlin task. e: Wrong plugin option format: null, should be plugin&lt;pluginId&gt;<optionName>=<value>
v
Does not actually sound like a Gradle problem from a quick look. You somewhere try to use a Kotlin compiler plugin and do not properly use the commandline arguments. If you use
--stacktrace
or a build
--scan
you might get more information where this is coming from.
m
hi @Vampire. I’m still struggling to find the root cause of issue. Can you have a look at my build scan report? here’s my build scan report - https://scans.gradle.com/s/26uhhd4tco65s
v
I guess you need to add
--info
or
--debug
to get some more insight
m
i’m getting this error [KOTLIN] Kotlin compilation 'jdkHome' argument: null e: Wrong plugin option format: null, should be plugin&lt;pluginId&gt;<optionName>=<value> Finished executing kotlin compiler using DAEMON strategy
v
That's basically what you originally wrote
m
Here’s both —stacktrace & —debug build scan report. Can you have a look on these reports ? —stacktrace report - https://scans.gradle.com/s/ag5fx3seoherm —debug report - https://scans.gradle.com/s/j2aw4yncxbwpq
v
Seems the --debug output does not make it into the build scan report. And --stacktrace is always included in the build scan report. So those scans unfortunately do not provide any additional information.