搜索Gradle插件

com.fangxu.so-collection-plugin

所有者: xufang

该插件用于安卓项目。它在构建过程中收集所有依存so文件的md5。\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t在用户首次启动应用程序后,您可以检查md5。\t\t\t\t\t\t\t\t\t如果文件损坏,则提示用户重新安装apk。\t您可以通过我的GitHub获得代码:"https://github.com/uin3566/SoCheckLib"

源码: https://github.com/uin3566/SoCheckPlugin/tree/master/GroovyPlugin

版本 1.0.7(最新版)

1.0.7

创建于2016年12月26日。

该插件用于安卓项目。它在构建过程中收集所有依存so文件的md5。\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t在用户首次启动应用程序后,您可以检查md5。\t\t\t\t\t\t\t\t\t如果文件损坏,则提示用户重新安装apk。\t您可以通过我的GitHub获得代码:"https://github.com/uin3566/SoCheckLib"

使用plugins DSL

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

使用旧版插件应用程序

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

apply(plugin = "com.fangxu.so-collection-plugin")

使用plugins DSL

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

使用旧版插件应用程序

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

apply plugin: "com.fangxu.so-collection-plugin"

学习如何将插件应用于子项目