com.github.plnice.canidropjetifier
Owner: Miłosz Lewandowski
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.5 (latest)
0.5
Created 08 September 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.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.plnice:canidropjetifier:0.5")
}
}
apply(plugin = "com.github.plnice.canidropjetifier")
Using the plugins DSL:
plugins {
id "com.github.plnice.canidropjetifier" version "0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.plnice:canidropjetifier:0.5"
}
}
apply plugin: "com.github.plnice.canidropjetifier"