org.mozilla.android
Owner: Michael Comella
A plugin for Android development at Mozilla
https://github.com/mozilla-mobile/android-automation-tools/blob/master/gradle-plugin/README.md
Sources: https://github.com/mozilla-mobile/android-automation-tools
Version 0.2 (latest)
Created 19 March 2019.
A plugin for Android development at Mozilla
Add this plugin to your build using the plugins DSL:
plugins {
id("org.mozilla.android") version "0.2"
}
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("org.mozilla.android:org.mozilla.android.gradle.plugin:0.2") }
It can then be applied in the precompiled script plugin:plugins { id("org.mozilla.android") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.mozilla.android:org.mozilla.android.gradle.plugin:0.2") } } apply(plugin = "org.mozilla.android")
- Applying plugins to all subprojects .