com.moengage.tools-android-sdk
Owner: MoEngage Inc
Plugin for easing MoEngage Android SDK integration.
Sources: https://github.com/MoEngage-Gradle-Plugin
Version 0.0.1 (latest)
Created 22 March 2019.
Plugin for easing MoEngage Android SDK integration.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.moengage.tools-android-sdk") version "0.0.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.moengage.tools-android-sdk:com.moengage.tools-android-sdk.gradle.plugin:0.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.moengage.tools-android-sdk") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.moengage.tools-android-sdk:com.moengage.tools-android-sdk.gradle.plugin:0.0.1") } } apply(plugin = "com.moengage.tools-android-sdk")
- Applying plugins to all subprojects .