Search Gradle plugins

me.tatarka.holdr

Generates view holders from Android layout files

https://github.com/evant/holdr

Sources: https://github.com/evant/holdr

Version 1.5.0

1.5.0

Created 12 April 2015.

Generates view holders from Android layout files

Add this plugin to your build using the plugins DSL:

plugins {
  id("me.tatarka.holdr") version "1.5.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.me.tatarka.holdr:gradle-plugin:1.5.0")
      }
    }
    
    apply(plugin = "me.tatarka.holdr")
  • Applying plugins to all subprojects .