com.gamechangesns.gc_nboard_upass
Owner: Neeraj Bagra
This plugin automatically adds dependencies related to CameraX and MLKit.
Sources: https://github.com/gcsns/nboard_sdk_gradle_plugin
Version 1.2.1 (latest)
Created 02 February 2021.
This plugin automatically adds dependencies related to CameraX and MLKit.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.gamechangesns.gc_nboard_upass") version "1.2.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.gamechangesns.gc_nboard_upass:com.gamechangesns.gc_nboard_upass.gradle.plugin:1.2.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.gamechangesns.gc_nboard_upass") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.gamechangesns.gc_nboard_upass:com.gamechangesns.gc_nboard_upass.gradle.plugin:1.2.1") } } apply(plugin = "com.gamechangesns.gc_nboard_upass")
- Applying plugins to all subprojects .