com.raxdenstudios.android-version
Owner: Ángel Gómez García
Allow to include basic configuration for commons modules in Android.
https://github.com/raxden/android-plugins
Sources: https://github.com/raxden/android-plugins.git
Version 0.24 (latest)
0.24
Created 20 January 2021.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Allow to include basic configuration for commons modules in Android.
Using the plugins DSL:
plugins {
id("com.raxdenstudios.android-version") version "0.24"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.raxdenstudios:android-plugins:0.24")
}
}
apply(plugin = "com.raxdenstudios.android-version")
Using the plugins DSL:
plugins {
id "com.raxdenstudios.android-version" version "0.24"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.raxdenstudios:android-plugins:0.24"
}
}
apply plugin: "com.raxdenstudios.android-version"