me.tylerbwong.gradle.metalava
Owner:
Tyler Wong
A Gradle plugin for Metalava, AOSP's tool for API compatibility tracking.
https://github.com/tylerbwong/metalava-gradle
Sources: https://github.com/tylerbwong/metalava-gradle
Version 0.4.0-alpha03 (latest)
Created 06 December 2024.
A Gradle plugin for Metalava, AOSP's tool for API metadata extraction and compatibility tracking.
Add this plugin to your build using the plugins DSL:
plugins {
id("me.tylerbwong.gradle.metalava") version "0.4.0-alpha03"
}
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("me.tylerbwong.gradle.metalava:me.tylerbwong.gradle.metalava.gradle.plugin:0.4.0-alpha03") }
It can then be applied in the precompiled script plugin:plugins { id("me.tylerbwong.gradle.metalava") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("me.tylerbwong.gradle.metalava:me.tylerbwong.gradle.metalava.gradle.plugin:0.4.0-alpha03") } } apply(plugin = "me.tylerbwong.gradle.metalava")
- Applying plugins to all subprojects .