搜索 Gradle 插件

版本 0.3.3(最新版)

0.3.3

创建于 2024 年 1 月 2 日。

Gradle 插件,用于将应用程序发布到 Google Play 商店

使用 插件 DSL

plugins {
  id("ch.hippmann.androidpublisher") version "0.3.3"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("ch.hippmann:androidpublisher:0.3.3")
  }
}

apply(plugin = "ch.hippmann.androidpublisher")

使用 插件 DSL

plugins {
  id "ch.hippmann.androidpublisher" version "0.3.3"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "ch.hippmann:androidpublisher:0.3.3"
  }
}

apply plugin: "ch.hippmann.androidpublisher"

了解如何将插件应用于子项目