79076249

Date: 2024-10-10 21:52:31
Score: 0.5
Natty:
Report link

In your build.gradle.kts

project.extra.set("KEY_NAME", "VALUE")

In your Custom Gradle Plugin

override fun apply(project: Project) {
   val value = project?.extra?.get("KEY_NAME").toString()
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: chank007