搜索Gradle插件

版本 6.4.0 (最新)

6.4.0

创建于 2024年5月28日。

一组可能对多模块Android项目有用的插件。

使用 插件DSL

plugins {
  id("com.starter.easylauncher") version "6.4.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.project.starter:easylauncher:6.4.0")
  }
}

apply(plugin = "com.starter.easylauncher")

使用 插件DSL

plugins {
  id "com.starter.easylauncher" version "6.4.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.project.starter:easylauncher:6.4.0"
  }
}

apply plugin: "com.starter.easylauncher"

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