搜索Gradle插件

版本 2.1.8 (最新版)

2.1.8

创建日期:2024年8月1日。

简化复杂AGP API的使用并隔离不同AGP版本之间的差异

使用 插入插件DSL

plugins {
  id("io.github.5hmlA.knife") version "2.1.8"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.5hmlA:conventions:2.1.8")
  }
}

apply(plugin = "io.github.5hmlA.knife")

使用 插入插件DSL

plugins {
  id "io.github.5hmlA.knife" version "2.1.8"
}

使用 旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.5hmlA:conventions:2.1.8"
  }
}

apply plugin: "io.github.5hmlA.knife"

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