Search Gradle plugins

Version 0.1.2.alpha-1

Created 10 July 2023.

Best way to structure your Android Project

Using the plugins DSL:

plugins {
  id("tools.forma.android") version "0.1.2.alpha-1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("tools.forma:android:0.1.2.alpha-1")
  }
}

apply(plugin = "tools.forma.android")

Using the plugins DSL:

plugins {
  id "tools.forma.android" version "0.1.2.alpha-1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "tools.forma:android:0.1.2.alpha-1"
  }
}

apply plugin: "tools.forma.android"

Learn how to apply plugins to subprojects