io.github.5hmlA.android
Owner: 江祖贇
android build common config for build.gradle, this will auto add android necessary dependencies
https://github.com/5hmlA/conventions
Sources: https://github.com/5hmlA/conventions
Version 2.1.22 (latest)
2.1.22
Created 31 October 2024.
android build common config for build.gradle, this will auto add android necessary dependencies
Using the plugins DSL:
plugins {
id("io.github.5hmlA.android") version "2.1.22"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.5hmlA:conventions:2.1.22")
}
}
apply(plugin = "io.github.5hmlA.android")
Using the plugins DSL:
plugins {
id "io.github.5hmlA.android" version "2.1.22"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.5hmlA:conventions:2.1.22"
}
}
apply plugin: "io.github.5hmlA.android"