搜索Gradle插件

版本 0.1.0 (最新版)

0.1.0

创建于 2016年6月11日。

删除未对齐APK的Gradle插件

使用 插件DSL

plugins {
  id("com.vanniktech.android.unaligned.apks.remover") version "0.1.0"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.vanniktech:gradle-android-unaligned-apks-remover-plugin:0.1.0")
  }
}

apply(plugin = "com.vanniktech.android.unaligned.apks.remover")

使用 插件DSL

plugins {
  id "com.vanniktech.android.unaligned.apks.remover" version "0.1.0"
}

使用 旧版插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.vanniktech:gradle-android-unaligned-apks-remover-plugin:0.1.0"
  }
}

apply plugin: "com.vanniktech.android.unaligned.apks.remover"

学习如何应用插件到子项目