搜索Gradle插件

版本 0.1.4(最新)

0.1.4

创建于2023年9月8日。

Gradle插件,用于使用Git自动生成Android的versionName和versionCode。

使用插件DSL

plugins {
  id("com.gitlab.edyjen.android-versioning") version "0.1.4"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.gitlab.edyjen:android-versioning:0.1.4")
  }
}

apply(plugin = "com.gitlab.edyjen.android-versioning")

使用插件DSL

plugins {
  id "com.gitlab.edyjen.android-versioning" version "0.1.4"
}

使用旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.gitlab.edyjen:android-versioning:0.1.4"
  }
}

apply plugin: "com.gitlab.edyjen.android-versioning"

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