搜索 Gradle 插件

com.microsoft.identity.buildsystem

所有者: Shane Oatman

Gradle 插件,用于封装为 AuthClient android 项目定制的构建任务和配置。

https://github.com/azuread

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

版本 0.2.3(最新)

0.2.3

创建于 2021 年 11 月 24 日。

Gradle 插件,用于封装为 AuthClient android 项目定制的构建任务和配置。

使用 插件 DSL

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

使用 旧版插件应用

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

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

使用 插件 DSL

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

使用 旧版插件应用

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

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

了解如何将插件应用于子项目