Search Gradle plugins

com.github.plnice.canidropjetifier

Checks whether there are any dependencies using support library instead of AndroidX artifacts.

https://github.com/plnice/can-i-drop-jetifier

Sources: https://github.com/plnice/can-i-drop-jetifier

Version 0.2

Created 04 February 2019.

Checks whether there are any dependencies using support library instead of AndroidX artifacts.

Using the plugins DSL:

plugins {
  id("com.github.plnice.canidropjetifier") version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.plnice:canidropjetifier:0.2")
  }
}

apply(plugin = "com.github.plnice.canidropjetifier")

Using the plugins DSL:

plugins {
  id "com.github.plnice.canidropjetifier" version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.plnice:canidropjetifier:0.2"
  }
}

apply plugin: "com.github.plnice.canidropjetifier"

Learn how to apply plugins to subprojects