Search Gradle plugins

com.sergioserra.android-s3

Fork from: https://github.com/rambabusaravanan/gradle-android-s3New features: - Filter uploaded files by extension - Attach metada to each uploaded file - Set aws region A simple light weight Gradle plugin for Android project to upload apk of all the build variants to AWS S3.This helps you to maintain all flavour of every version easily in S3. For usage, please visit docs for usage ..

https://github.com/sergioserra/gradle-android-s3

Sources: https://github.com/sergioserra/gradle-android-s3.git

Version 1.0.4

Created 11 April 2018.

Fork from: https://github.com/rambabusaravanan/gradle-android-s3New features: - Filter uploaded files by extension - Attach metada to each uploaded file - Set aws region A simple light weight Gradle plugin for Android project to upload apk of all the build variants to AWS S3.This helps you to maintain all flavour of every version easily in S3. For usage, please visit docs for usage ..

Using the plugins DSL:

plugins {
  id("com.sergioserra.android-s3") version "1.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.sergioserra.gradle:buildSrc:1.0.4")
  }
}

apply(plugin = "com.sergioserra.android-s3")

Using the plugins DSL:

plugins {
  id "com.sergioserra.android-s3" version "1.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.sergioserra.gradle:buildSrc:1.0.4"
  }
}

apply plugin: "com.sergioserra.android-s3"

Learn how to apply plugins to subprojects