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.

Add this plugin to your build using the plugins DSL:

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

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("com.github.wuyr.incrementalcompiler:com.github.wuyr.incrementalcompiler.gradle.plugin:1.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.github.wuyr.incrementalcompiler")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.wuyr.incrementalcompiler:com.github.wuyr.incrementalcompiler.gradle.plugin:1.0.0")
      }
    }
    
    apply(plugin = "com.github.wuyr.incrementalcompiler")
  • Applying plugins to all subprojects .