Search Gradle plugins

Version 1.0.1 (latest)

Created 07 August 2020.

Gradle plugin for Level 11 internal Android applications

Using the plugins DSL:

plugins {
  id("com.level11.android-application") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.level11:level11-gradle-plugin-master:1.0.1")
  }
}

apply(plugin = "com.level11.android-application")

Using the plugins DSL:

plugins {
  id "com.level11.android-application" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.level11:level11-gradle-plugin-master:1.0.1"
  }
}

apply plugin: "com.level11.android-application"

Learn how to apply plugins to subprojects