Search Gradle plugins

com.microsoft.identity.buildsystem

Gradle plugin to encapsulate custom build tasks and configuration for AuthClient android projects.

https://github.com/azuread

Sources: https://github.com/AzureAD/android-complete/tree/master/plugins/buildsystem

Version 0.2.1

Created 21 October 2021.

Gradle plugin to encapsulate custom build tasks and configuration for AuthClient android projects.

Using the plugins DSL:

plugins {
  id("com.microsoft.identity.buildsystem") version "0.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.microsoft.identity:MSIDAndroid:0.2.1")
  }
}

apply(plugin = "com.microsoft.identity.buildsystem")

Using the plugins DSL:

plugins {
  id "com.microsoft.identity.buildsystem" version "0.2.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.microsoft.identity:MSIDAndroid:0.2.1"
  }
}

apply plugin: "com.microsoft.identity.buildsystem"

Learn how to apply plugins to subprojects