搜索 Gradle 插件

com.fangxu.socollectionplugin

所有者: xufang

该插件用于 Android 项目。它用于在构建过程中收集所有依赖 so 文件的 md5。然后在用户安装后第一次启动应用程序时检查 md5,如果检测到损坏,则提示用户重新安装 APK。检查代码已编写,您可以从中获取它:我的 Github:"https://github.com/uin3566/SoCheckPlugin"

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

版本 1.0.2(最新版)

1.0.2

创建于 2016年11月28日。

该插件用于 Android 项目。它用于在构建过程中收集所有依赖 so 文件的 md5。然后在用户安装后第一次启动应用程序时检查 md5,如果检测到损坏,则提示用户重新安装 APK。检查代码已编写,您可以从中获取它:我的 Github:"https://github.com/uin3566/SoCheckLib"

使用 plugins DSL

plugins {
  id("com.fangxu.socollectionplugin") version "1.0.2"
}

使用 旧版插件应用程序

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

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

使用 plugins DSL

plugins {
  id "com.fangxu.socollectionplugin" version "1.0.2"
}

使用 旧版插件应用程序

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

apply plugin: "com.fangxu.socollectionplugin"

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