Search Gradle plugins

org.mozilla.apilint

Tracks the API of an android library and helps maintaining backwards compatibility.

https://github.com/mozilla-mobile/gradle-apilint

Sources: https://github.com/mozilla-mobile/gradle-apilint

Version 0.5.3 (latest)

0.5.3

Created 06 June 2024.

Tracks the API of an Android library and helps maintain backward compatibility.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.mozilla.apilint") version "0.5.3"
}

See also:

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