Search Gradle plugins

com.github.wuyr.incrementalcompiler

Owner: wuyr

A Gradle plugin for Android project, used to incrementally compile class and generate incremental DEX, much faster than the [assembleDebug] task.

https://github.com/wuyr/incremental-compiler

Sources: https://github.com/wuyr/incremental-compiler

Version 1.0.0 (latest)

Created 19 July 2021.

A Gradle plugin for Android project, used to incrementally compile class and generate incremental DEX, much faster than the [assembleDebug] task.

Using the plugins DSL:

plugins {
  id("com.github.wuyr.incrementalcompiler") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.wuyr.incrementalcompiler:plugin:1.0.0")
  }
}

apply(plugin = "com.github.wuyr.incrementalcompiler")

Using the plugins DSL:

plugins {
  id "com.github.wuyr.incrementalcompiler" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.wuyr.incrementalcompiler:plugin:1.0.0"
  }
}

apply plugin: "com.github.wuyr.incrementalcompiler"

Learn how to apply plugins to subprojects