com.github.bk.simple-version-android
Android 项目简单版本管理插件
https://github.com/bk/simple-version-android
源代码: https://github.com/bk/simple-version-android
使用 插件 DSL
plugins {
id("com.github.bk.simple-version-android") version "0.1.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.bk:simple-version-android:0.1.0")
}
}
apply(plugin = "com.github.bk.simple-version-android")
使用 插件 DSL
plugins {
id "com.github.bk.simple-version-android" version "0.1.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.bk:simple-version-android:0.1.0"
}
}
apply plugin: "com.github.bk.simple-version-android"