io.github.timaviciix.robotools.aar-to-jar-tool
Owner: TIMAVICIIX
It is an AAR file to JAR file extraction tool.
https://github.com/TIMAVICIIX/AAR-TO-JAR-GradlePlugin
Sources: https://github.com/TIMAVICIIX/AAR-TO-JAR-GradlePlugin.git
Version 0.8.0-beta (latest)
Created 21 May 2024.
It is an AAR file to JAR file extraction tool.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.timaviciix.robotools.aar-to-jar-tool") version "0.8.0-beta"
}
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("io.github.timaviciix.robotools.aar-to-jar-tool:io.github.timaviciix.robotools.aar-to-jar-tool.gradle.plugin:0.8.0-beta") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.timaviciix.robotools.aar-to-jar-tool") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.timaviciix.robotools.aar-to-jar-tool:io.github.timaviciix.robotools.aar-to-jar-tool.gradle.plugin:0.8.0-beta") } } apply(plugin = "io.github.timaviciix.robotools.aar-to-jar-tool")
- Applying plugins to all subprojects .