com.github.ngyewch.unity.packager.gradle
Owner:
Nick Ng
Gradle Unity packager plugin
https://github.com/ngyewch/UnityPackager
Sources: https://github.com/ngyewch/UnityPackager.git
Version 1.0 (latest)
Created 24 April 2019.
Gradle Unity packager plugin
Using the plugins DSL:
plugins {
id("com.github.ngyewch.unity.packager.gradle") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.ngyewch.unitypackager:unity-packager-gradle-plugin:1.0")
}
}
apply(plugin = "com.github.ngyewch.unity.packager.gradle")
Using the plugins DSL:
plugins {
id "com.github.ngyewch.unity.packager.gradle" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.ngyewch.unitypackager:unity-packager-gradle-plugin:1.0"
}
}
apply plugin: "com.github.ngyewch.unity.packager.gradle"