Search Gradle plugins

Version 1.2-SNAPSHOT

Created 02 February 2021.

This plugin automatically adds dependencies related to CameraX and MLKit.

Using the plugins DSL:

plugins {
  id("com.gamechangesns.gc_nboard_upass_huawei2") version "1.2-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.gamechangesns:gc-nboard-upass-huawei:1.2-SNAPSHOT")
  }
}

apply(plugin = "com.gamechangesns.gc_nboard_upass_huawei2")

Using the plugins DSL:

plugins {
  id "com.gamechangesns.gc_nboard_upass_huawei2" version "1.2-SNAPSHOT"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.gamechangesns:gc-nboard-upass-huawei:1.2-SNAPSHOT"
  }
}

apply plugin: "com.gamechangesns.gc_nboard_upass_huawei2"

Learn how to apply plugins to subprojects