Search Gradle plugins

Version 0.3 (latest)

Created 23 May 2018.

An Android-Gradle plugin for generate DEX classes and a APK from a Library module.

Using the plugins DSL:

plugins {
  id("com.github.gmazzo.apklib") version "0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.gmazzo:gradle-apklib-plugin:0.3")
  }
}

apply(plugin = "com.github.gmazzo.apklib")

Using the plugins DSL:

plugins {
  id "com.github.gmazzo.apklib" version "0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.gmazzo:gradle-apklib-plugin:0.3"
  }
}

apply plugin: "com.github.gmazzo.apklib"

Learn how to apply plugins to subprojects