li.mews.android.gradle-azure-apk-publisher
Owner: Mews
Publishes Android APKs to Azure Storage
https://github.com/MewsSystems/gradle-azure-apk-publisher
Sources: https://github.com/MewsSystems/mews-android-library/
Version 0.3 (latest)
0.3
Created 07 March 2019.
Publishes Android APKs to Azure Storage
Using the plugins DSL:
plugins {
id("li.mews.android.gradle-azure-apk-publisher") version "0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.li.mews.android.gradle-azure-apk-publisher:GradleAzureApkPublisher:0.3")
}
}
apply(plugin = "li.mews.android.gradle-azure-apk-publisher")
Using the plugins DSL:
plugins {
id "li.mews.android.gradle-azure-apk-publisher" version "0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.li.mews.android.gradle-azure-apk-publisher:GradleAzureApkPublisher:0.3"
}
}
apply plugin: "li.mews.android.gradle-azure-apk-publisher"