-
Notifications
You must be signed in to change notification settings - Fork 0
Microsoft Identity Build System Gradle Plugin
Shane Oatman edited this page Apr 12, 2021
·
4 revisions
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.
Currently the following features are supported:
- Enabled/Disable Java 8 Language Features
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
}