Search Gradle plugins

Version 1.0.1 (latest)

Created 28 November 2016.

The plugin is used for android project.it is used for collect md5 of all of the dependent so filesduring the build process.then you can check md5 when user first start app after installation,if so damaged,then hint user to reinstall the apk.check code is written,you can get it from my Github:"https://github.com/uin3566/SoCheckPlugin"

Using the plugins DSL:

plugins {
  id("com.fangxu.socheckplugin") version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.fangxu:GroovyPlugin:1.0.1")
  }
}

apply(plugin = "com.fangxu.socheckplugin")

Using the plugins DSL:

plugins {
  id "com.fangxu.socheckplugin" version "1.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.fangxu:GroovyPlugin:1.0.1"
  }
}

apply plugin: "com.fangxu.socheckplugin"

Learn how to apply plugins to subprojects