Search Gradle plugins

Version 2.2.4 (latest)

Created 29 January 2024.

This is a gradle Android plugin for automated uploads to Updraft

Using the plugins DSL:

plugins {
  id("com.appswithlove.updraft") version "2.2.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.appswithlove.updraft:updraft:2.2.4")
  }
}

apply(plugin = "com.appswithlove.updraft")

Using the plugins DSL:

plugins {
  id "com.appswithlove.updraft" version "2.2.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.appswithlove.updraft:updraft:2.2.4"
  }
}

apply plugin: "com.appswithlove.updraft"

Learn how to apply plugins to subprojects