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)
0.2
Created 19 March 2019.
A plugin for Android development at Mozilla
Using the plugins DSL:
plugins {
id("org.mozilla.android") version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.mozilla.android:gradle-plugin:0.2")
}
}
apply(plugin = "org.mozilla.android")
Using the plugins DSL:
plugins {
id "org.mozilla.android" version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.mozilla.android:gradle-plugin:0.2"
}
}
apply plugin: "org.mozilla.android"