Search Gradle plugins

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)

Using the plugins DSL:

plugins {
  id("app.futured.arkitekt.templates") version "4.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("app.futured.arkitekt:templates:4.0.0")
  }
}

apply(plugin = "app.futured.arkitekt.templates")

Using the plugins DSL:

plugins {
  id "app.futured.arkitekt.templates" version "4.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "app.futured.arkitekt:templates:4.0.0"
  }
}

apply plugin: "app.futured.arkitekt.templates"

Learn how to apply plugins to subprojects