Search Gradle plugins

com.thefuntasty.mvvm.android-templates

Owner: Futured

This will add option to create new MVVM Fragment an MVVM Activity. Multiple files required by MVVM framework will be automatically generated (see: https://github.com/thefuntasty/mvvm-android)

https://github.com/thefuntasty/mvvm-android

Sources: https://github.com/thefuntasty/mvvm-android

Version 2.1.0

Created 14 October 2019.

This will add option to create new MVVM Fragment an MVVM Activity.
Multiple files required by MVVM framework will be automatically generated (see: https://github.com/thefuntasty/mvvm-android)

Using the plugins DSL:

plugins {
  id("com.thefuntasty.mvvm.android-templates") version "2.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.thefuntasty.mvvm:templates:2.1.0")
  }
}

apply(plugin = "com.thefuntasty.mvvm.android-templates")

Using the plugins DSL:

plugins {
  id "com.thefuntasty.mvvm.android-templates" version "2.1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.thefuntasty.mvvm:templates:2.1.0"
  }
}

apply plugin: "com.thefuntasty.mvvm.android-templates"

Learn how to apply plugins to subprojects