Search Gradle plugins

Version 0.8.0-beta (latest)

0.8.0-beta

Created 21 May 2024.

It is an AAR file to JAR file extraction tool.

Using the plugins DSL:

plugins {
  id("io.github.timaviciix.robotools.aar-to-jar-tool") version "0.8.0-beta"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.timaviciix:RoboLogic_AARToJAR_Plugin:0.8.0-beta")
  }
}

apply(plugin = "io.github.timaviciix.robotools.aar-to-jar-tool")

Using the plugins DSL:

plugins {
  id "io.github.timaviciix.robotools.aar-to-jar-tool" version "0.8.0-beta"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.timaviciix:RoboLogic_AARToJAR_Plugin:0.8.0-beta"
  }
}

apply plugin: "io.github.timaviciix.robotools.aar-to-jar-tool"

Learn how to apply plugins to subprojects