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