Search Gradle plugins

Version 1.0.1 (latest)

Created 30 November 2022.

A gradle plugin to check whether SensorsData Android SDK dependency is added.

Using the plugins DSL:

plugins {
  id("io.github.gvczhang.sdkchecker") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.gvczhang.sdkchecker:sdkplugin:1.0.1")
  }
}

apply(plugin = "io.github.gvczhang.sdkchecker")

Using the plugins DSL:

plugins {
  id "io.github.gvczhang.sdkchecker" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.gvczhang.sdkchecker:sdkplugin:1.0.1"
  }
}

apply plugin: "io.github.gvczhang.sdkchecker"

Learn how to apply plugins to subprojects