Search Gradle plugins

Version 0.4.4 (latest)

0.4.4

Created 09 April 2019.

A plugin that helps consume multiple Mozilla Application Services native libraries.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.mozilla.appservices") version "0.4.4"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.mozilla.appservices:gradle-plugin:0.4.4")
      }
    }
    
    apply(plugin = "org.mozilla.appservices")
  • Applying plugins to all subprojects .