Skip to content

Microsoft Identity Build System Gradle Plugin

Shane Oatman edited this page Apr 12, 2021 · 4 revisions

Overview

The android-complete project contains the source code and this reference document for the custom gradle plugin that the Microsoft identity team is using to share tasks and configuration between multiple builds for our libraries.

Features

Currently the following features are supported:

Usage

NOTE: The plugin is specifically to extend/configure android projects. As a result the android gradle plugin must be applied to your project in order to apply this plugin. If there is interest we may consider making a version independent of android gradle plugin.

//Add the plugin
plugins {
  id 'com.microsoft.identity.buildsystem' version '0.0.1'
}
//Configure the plugin
buildSystem {
  desugar = true
}
Clone this wiki locally