搜索Gradle插件

版本 0.34(最新版)

0.34

创建日期:2021年2月22日。

此插件版本在JCenter永久重定向到Maven Central后将不再解析,因为它仅使用JCenter中可找到的依赖。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact 允许在Android中包含常用模块的基本配置。

使用 插件DSL

plugins {
  id("com.raxdenstudios.version-library") version "0.34"
}

使用 旧插件应用程序

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

apply(plugin = "com.raxdenstudios.version-library")

使用 插件DSL

plugins {
  id "com.raxdenstudios.version-library" version "0.34"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.raxdenstudios:android-plugins:0.34"
  }
}

apply plugin: "com.raxdenstudios.version-library"

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