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)
4.0.0
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"