Search Gradle plugins

com.fangxu.so-collection-plugin

Owner: xufang

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/SoCheckLib"

Sources: https://github.com/uin3566/SoCheckPlugin/tree/master/GroovyPlugin

Version 1.0.7 (latest)

Created 26 December 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/SoCheckLib"

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.fangxu.so-collection-plugin") version "1.0.7"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.fangxu.so-collection-plugin:com.fangxu.so-collection-plugin.gradle.plugin:1.0.7")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.fangxu.so-collection-plugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.fangxu.so-collection-plugin:com.fangxu.so-collection-plugin.gradle.plugin:1.0.7")
      }
    }
    
    apply(plugin = "com.fangxu.so-collection-plugin")
  • Applying plugins to all subprojects .