搜索 Gradle 插件

使用 插件 DSL

plugins {
  id("net.wooga.unity") version "4.3.0"
}

使用 旧的插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.wooga.gradle:unity:4.3.0")
  }
}

apply(plugin = "net.wooga.unity")

使用 插件 DSL

plugins {
  id "net.wooga.unity" version "4.3.0"
}

使用 旧的插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.wooga.gradle:unity:4.3.0"
  }
}

apply plugin: "net.wooga.unity"

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