com.gamechangesns.gc_nboard_amex_cordova
Owner: Neeraj Bagra
This plugin automatically adds dependencies related to CameraX.
Sources: https://github.com/gcsns/nboard_sdk_gradle_plugin
Version 1.4-SNAPSHOP (latest)
Created 05 November 2021.
This plugin automatically adds dependencies related to CameraX.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.gamechangesns.gc_nboard_amex_cordova") version "1.4-SNAPSHOP"
}
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_amex_cordova:com.gamechangesns.gc_nboard_amex_cordova.gradle.plugin:1.4-SNAPSHOP") }
It can then be applied in the precompiled script plugin:plugins { id("com.gamechangesns.gc_nboard_amex_cordova") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.gamechangesns.gc_nboard_amex_cordova:com.gamechangesns.gc_nboard_amex_cordova.gradle.plugin:1.4-SNAPSHOP") } } apply(plugin = "com.gamechangesns.gc_nboard_amex_cordova")
- Applying plugins to all subprojects .