Owner:
Marek Langiewicz
Reusable gradle build templates for typical kotlin/android/compose projects.
Version 0.4.28
Created 15 September 2026.
Reusable gradle build templates for typical kotlin/android/compose projects.
Add this plugin to your build using the plugins DSL:
plugins {
id("pl.mareklangiewicz.templatefun") version "0.4.28"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("pl.mareklangiewicz.templatefun:pl.mareklangiewicz.templatefun.gradle.plugin:0.4.28") }It can then be applied in the precompiled script plugin:plugins { id("pl.mareklangiewicz.templatefun") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("pl.mareklangiewicz.templatefun:pl.mareklangiewicz.templatefun.gradle.plugin:0.4.28") } } apply(plugin = "pl.mareklangiewicz.templatefun") - Applying plugins to all subprojects .