搜索Gradle插件

版本 1.0.1 (最新)

1.0.1

创建于 2016年11月22日。

由于JCenter永久重定向到Maven Central,该插件版本将不再解析,因为它只使用在JCenter中存在的依赖。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact 这是一款用于Android的Gradle插件,会在构建过程中生成一个包含Auth0凭据的XML文件。

使用 plugins DSL

plugins {
  id("com.auth0.android.gradle-credentials") version "1.0.1"
}

使用 旧版插件应用

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

apply(plugin = "com.auth0.android.gradle-credentials")

使用 plugins DSL

plugins {
  id "com.auth0.android.gradle-credentials" version "1.0.1"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.auth0.android:gradle-credentials:1.0.1"
  }
}

apply plugin: "com.auth0.android.gradle-credentials"

学习如何将插件应用到子项目中