com.raxdenstudios.app-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.28 (latest)
0.28
Created 25 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.app-version") version "0.28"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.raxdenstudios:android-plugins:0.28")
}
}
apply(plugin = "com.raxdenstudios.app-version")
Using the plugins DSL:
plugins {
id "com.raxdenstudios.app-version" version "0.28"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.raxdenstudios:android-plugins:0.28"
}
}
apply plugin: "com.raxdenstudios.app-version"