Search Gradle plugins

Version 1.0-SNAPSHOT

Created 27 January 2021.

This plugin automatically adds dependencies related to CameraX and MLKit.

Using the plugins DSL:

plugins {
  id("com.gamechangesns.gc_nboard_upass_huawei") version "1.0-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.0-SNAPSHOT")
  }
}

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

Using the plugins DSL:

plugins {
  id "com.gamechangesns.gc_nboard_upass_huawei" version "1.0-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.0-SNAPSHOT"
  }
}

apply plugin: "com.gamechangesns.gc_nboard_upass_huawei"

Learn how to apply plugins to subprojects