app.futured.arkitekt.templates
Owner: Futured
This will add option to create new Arkitekt Fragment an Arkitekt Activity. Multiple files required by Arkitekt framework will be automatically generated (see: https://github.com/futuredapp/arkitekt)
https://github.com/futuredapp/arkitekt
Sources: https://github.com/futuredapp/arkitekt
Version 4.0.0 (latest)
Created 21 April 2020.
This will add option to create new Arkitekt Fragment an Arkitekt Activity.
Multiple files required by Arkitekt framework will be automatically generated (see: https://github.com/futuredapp/arkitekt)
Add this plugin to your build using the plugins DSL:
plugins {
id("app.futured.arkitekt.templates") version "4.0.0"
}
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("app.futured.arkitekt.templates:app.futured.arkitekt.templates.gradle.plugin:4.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("app.futured.arkitekt.templates") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("app.futured.arkitekt.templates:app.futured.arkitekt.templates.gradle.plugin:4.0.0") } } apply(plugin = "app.futured.arkitekt.templates")
- Applying plugins to all subprojects .