Search Gradle plugins

Version 1.2.2 (latest)

Created 04 February 2022.

Gradle Plugin to verify if you can keep Android Jetifier disabled

Using the plugins DSL:

plugins {
  id("com.dipien.byebyejetifier") version "1.2.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.dipien:bye-bye-jetifier:1.2.2")
  }
}

apply(plugin = "com.dipien.byebyejetifier")

Using the plugins DSL:

plugins {
  id "com.dipien.byebyejetifier" version "1.2.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.dipien:bye-bye-jetifier:1.2.2"
  }
}

apply plugin: "com.dipien.byebyejetifier"

Learn how to apply plugins to subprojects